Jupyter virtualenv setup


Python --- 10/07/2019

Setup

  1. Install Anaconda for Python 3.7 for your operating system: Anaconda
  2. Create a directory/folder for data science and move into it.
  3. Download environment.yml
  4. Execute conda env create -f environment.yml
  5. You now have all the libraries listed in environment.yml
  6. Set up Jupyter notebook to use this …

Continue reading