Created
January 1, 2019 17:42
-
-
Save navid-kalaei/cfad149dd4c00c00c7deea6cfb165bb6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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