README.md 1.6 KB
Newer Older
W
md  
wizardforcel 已提交
1 2 3 4
# Python 自然语言处理 第二版

## – 使用自然语言工具包分析文本

W
wizardforcel 已提交
5 6 7 8 9 10 11 12 13
> 作者:**Steven Bird, Ewan Klein 和 Edward Loper**
> 
> 译者:[Python 文档协作翻译小组](http://usyiyi.cn/translate/nltk_python/index.html)
> 
> 最后更新:2017.3.4
> 
> [Django 文档协作翻译小组](http://python.usyiyi.cn/django/index.html)人手紧缺,有兴趣的朋友可以加入我们,完全公益性质。交流群:467338606。

+   [在线阅读](https://nltk.apachecn.org)
W
wizardforcel 已提交
14
+   [在线阅读(Gitee)](https://apachecn.gitee.io/nlp-py-2e-zh/)
W
md  
wizardforcel 已提交
15

W
wizardforcel 已提交
16
本版本的 NLTK 已经针对 Python 3 和 NLTK 3 更新。本书的第一版由 O'Reilly 出版,可以在 [http://nltk.org/book_1ed/](http://nltk.org/book_1ed/) 访问到。(本书目前没有计划出第二版)
W
md  
wizardforcel 已提交
17 18 19

本版本的初译基于[原书第一版的翻译](http://www.52nlp.cn/resources),参见第一版[译者的话](./15.html)

W
wizardforcel 已提交
20
本书的发行遵守 [Creative Commons Attribution Noncommercial No-Derivative-Works 3.0 US License](http://creativecommons.org/licenses/by-nc-nd/3.0/us/) 条款。
W
md  
wizardforcel 已提交
21

W
wizardforcel 已提交
22
如果对材料有任何疑问请提交至 [nltk-users](http://groups.google.com/group/nltk-users) 邮件列表。请在 [issue tracker](https://github.com/nltk/nltk_book/issues) 上报告错误。
W
wizardforcel 已提交
23 24 25

## 下载

W
wizardforcel 已提交
26 27 28 29 30 31 32 33
### Docker

```
docker pull apachecn0/nlp-py-2e-zh
docker run -tid -p <port>:80 apachecn0/nlp-py-2e-zh
# 访问 http://localhost:{port} 查看文档
```

W
wizardforcel 已提交
34 35 36 37 38 39 40 41
### PYPI

```
pip install nlp-py-2e-zh
nlp-py-2e-zh <port>
# 访问 http://localhost:{port} 查看文档
```

W
wizardforcel 已提交
42 43 44 45 46 47 48
### NPM

```
npm install -g nlp-py-2e-zh
nlp-py-2e-zh <port>
# 访问 http://localhost:{port} 查看文档
```