Skip to content

big-data-team/ml-course

Repository files navigation

About

Practical Machine Learning Course

Environment Configuration

  1. Download requirements.txt
  2. Create environment:
export env_name="bdt-ml-course"
conda create -n $env_name python=3.10 -y
conda activate $env_name
# conda retires packages quite aggressively
# therefore pip is more robust way to setup environent:
pip install -r requirements.txt
# but if you love and trust conda, then call:
# conda install --file requirements.txt

For more information about Python virtual environments see:

See available conda environments with the help of:

conda info --envs

If you need to remove environment use the following command:

conda remove --name $env_name --all

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages