Created
January 17, 2020 12:06
-
-
Save willwillis/62c5488f4616ada7cf7b6edd164ad61e 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
#!/usr/bin/env bash | |
conda deactivate | |
conda update conda | |
conda create -n mlenv python=3.7 anaconda | |
conda activate mlenv | |
conda install -c conda-forge nodejs | |
conda install -c pyviz hvplot | |
conda install -c plotly plotly | |
conda install -c plotly plotly_express==0.4.1 | |
conda install -c pyviz panel | |
pip install psycopg2-binary | |
pip install sqlalchemy | |
jupyter labextension install @pyviz/jupyterlab_pyviz | |
jupyter labextension install @jupyterlab/plotly-extension | |
conda install python-graphviz | |
conda install graphviz | |
conda install -c conda-forge pydotplus | |
conda install -c conda-forge imbalanced-learn | |
pip install arch | |
pip install -U spacy | |
python -m spacy download en_core_web_sm | |
pip install --upgrade ibm-watson |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment