mirror of
https://github.com/apachecn/ailearning.git
synced 2026-04-23 18:13:05 +08:00
49 lines
1.6 KiB
Markdown
49 lines
1.6 KiB
Markdown
# Python 自然语言处理 第二版
|
||
|
||
## – 使用自然语言工具包分析文本
|
||
|
||
> 作者:**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)
|
||
+ [在线阅读(Gitee)](https://apachecn.gitee.io/nlp-py-2e-zh/)
|
||
|
||
本版本的 NLTK 已经针对 Python 3 和 NLTK 3 更新。本书的第一版由 O'Reilly 出版,可以在 [http://nltk.org/book_1ed/](http://nltk.org/book_1ed/) 访问到。(本书目前没有计划出第二版)
|
||
|
||
本版本的初译基于[原书第一版的翻译](http://www.52nlp.cn/resources),参见第一版[译者的话](./15.html)。
|
||
|
||
本书的发行遵守 [Creative Commons Attribution Noncommercial No-Derivative-Works 3.0 US License](http://creativecommons.org/licenses/by-nc-nd/3.0/us/) 条款。
|
||
|
||
如果对材料有任何疑问请提交至 [nltk-users](http://groups.google.com/group/nltk-users) 邮件列表。请在 [issue tracker](https://github.com/nltk/nltk_book/issues) 上报告错误。
|
||
|
||
## 下载
|
||
|
||
### Docker
|
||
|
||
```
|
||
docker pull apachecn0/nlp-py-2e-zh
|
||
docker run -tid -p <port>:80 apachecn0/nlp-py-2e-zh
|
||
# 访问 http://localhost:{port} 查看文档
|
||
```
|
||
|
||
### PYPI
|
||
|
||
```
|
||
pip install nlp-py-2e-zh
|
||
nlp-py-2e-zh <port>
|
||
# 访问 http://localhost:{port} 查看文档
|
||
```
|
||
|
||
### NPM
|
||
|
||
```
|
||
npm install -g nlp-py-2e-zh
|
||
nlp-py-2e-zh <port>
|
||
# 访问 http://localhost:{port} 查看文档
|
||
```
|