> For the complete documentation index, see [llms.txt](https://huang-jason.gitbook.io/anaconda/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://huang-jason.gitbook.io/anaconda/nlp.md).

# 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)"
```
