nlp
$ conda env list
$ conda create --name nlp3 python=3.5 numpy scipy matplotlib nltk pandas scikit-learn seaborn ipython-notebook
$ source activate nlp3
$ conda install -c conda-forge keras tensorflow
$ pip install pillow
$ conda install -c conda-forge wordcloud
$ source deactivate
# let notebook to use specific env
$ conda install nb_conda
$ git clone https://github.com/ipython/ipykernel.git
$ cd ipykernel
$ pip install -e .
$ python -m ipykernel install --user --name nlp3 --display-name "Python (nlp3)"
Last updated
Was this helpful?