Skip to content

Instantly share code, notes, and snippets.

@navid-kalaei
Created January 1, 2019 17:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save navid-kalaei/cfad149dd4c00c00c7deea6cfb165bb6 to your computer and use it in GitHub Desktop.
Save navid-kalaei/cfad149dd4c00c00c7deea6cfb165bb6 to your computer and use it in GitHub Desktop.
# download and install Anaconda
# NOTE: don't forget to add it to the path. You should check something while installing!
https://www.anaconda.com/download/
# verify the installation. It should print the conda version
conda --version
# download the merchant environment file
https://gist.github.com/navid-kalaei/0b56975b03faaad36f900c54f531c971
# change directory to where you downloaded the environment file
cd <to the download folder>
# create the environment
conda env create -f environment.yml
# activate and enjoy!
# windows:
activate data
# linux/max:
source activate data
# running the lab
jupyter lab
# deactivate the environment
# windows:
deactivate
# linux:
source deactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment