Created
May 8, 2019 06:01
-
-
Save mayurbhangale/c7dd06a5344133f5971f12d2d494edeb to your computer and use it in GitHub Desktop.
Initialize Conda NLP Environment with absolutely necessary packages
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
| # curl -L mini.conda.ml | bash | |
| source ~/.bash_profile | |
| conda create --name nlp python=3.6 | |
| source ~/.bash_profile | |
| conda activate nlp | |
| pip install spacy | |
| conda install tensorflow | |
| conda install -c pandas | |
| conda install -c jupyter | |
| pip install textacy | |
| conda install pytorch torchvision -c pytorch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment