Skip to content

Instantly share code, notes, and snippets.

@fakemonk1
Last active February 6, 2021 22:47
Show Gist options
  • Save fakemonk1/e5b49535c2563d2b59c36f98c1896a95 to your computer and use it in GitHub Desktop.
Save fakemonk1/e5b49535c2563d2b59c36f98c1896a95 to your computer and use it in GitHub Desktop.
  • Create a conda environment first with python version 3.7

conda create --name ml_env python=3.7

  • Install jupterlab to use Jupyter notebook and install dependencies

conda install -c conda-forge jupyterlab

conda install pandas matplotlib jupyter notebook scipy scikit-learn nb_conda nltk spyder

  • Install ipykernel to make this env to show up in the jupyer notebook

conda install -c anaconda ipykernel

python -m ipykernel install --user --name=ml_env

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment