基本信息
源码名称:NLTK安装包和插件,Python3.4.1版本
源码大小:49.83M
文件格式:.rar
开发语言:Python
更新时间:2023-11-21
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
NLTK安装包和插件,Python3.4.1版本
自己搜集的NLTK的安装包,里面是Python3.4.1版本,可以安装Python,numpy,NLTK,还附带一些插件,例如jieba中文分词,matplotlib绘图,按照步骤安装,自然语言处理的基本功能都可以实现。

.
├── NLTK安装包和插件,Python3.4.1版本_Python3.4.1NLTK安装.rar
└── Python3.4.1NLTK安装
    ├── 辅助插件安装
    │   ├── ,jieba中文分词插件,放到C盘,运行install
    │   │   └── jieba3k-0.34
    │   │       ├── PKG-INFO
    │   │       ├── build
    │   │       │   └── lib
    │   │       │       └── jieba
    │   │       │           ├── __init__.py
    │   │       │           ├── __init__.pyc
    │   │       │           ├── __main__.py
    │   │       │           ├── analyse
    │   │       │           │   ├── __init__.py
    │   │       │           │   ├── __init__.pyc
    │   │       │           │   ├── analyzer.py
    │   │       │           │   ├── analyzer.pyc
    │   │       │           │   └── idf.txt
    │   │       │           ├── dict.txt
    │   │       │           ├── finalseg
    │   │       │           │   ├── __init__.py
    │   │       │           │   ├── __init__.pyc
    │   │       │           │   ├── prob_emit.p
    │   │       │           │   ├── prob_emit.py
    │   │       │           │   ├── prob_emit.pyc
    │   │       │           │   ├── prob_start.p
    │   │       │           │   ├── prob_start.py
    │   │       │           │   ├── prob_start.pyc
    │   │       │           │   ├── prob_trans.p
    │   │       │           │   ├── prob_trans.py
    │   │       │           │   └── prob_trans.pyc
    │   │       │           └── posseg
    │   │       │               ├── __init__.py
    │   │       │               ├── __init__.pyc
    │   │       │               ├── char_state_tab.p
    │   │       │               ├── char_state_tab.py
    │   │       │               ├── char_state_tab.pyc
    │   │       │               ├── prob_emit.p
    │   │       │               ├── prob_emit.py
    │   │       │               ├── prob_emit.pyc
    │   │       │               ├── prob_start.p
    │   │       │               ├── prob_start.py
    │   │       │               ├── prob_start.pyc
    │   │       │               ├── prob_trans.p
    │   │       │               ├── prob_trans.py
    │   │       │               ├── prob_trans.pyc
    │   │       │               ├── viterbi.py
    │   │       │               └── viterbi.pyc
    │   │       ├── jieba
    │   │       │   ├── __init__.py
    │   │       │   ├── __init__.pyc
    │   │       │   ├── __main__.py
    │   │       │   ├── analyse
    │   │       │   │   ├── __init__.py
    │   │       │   │   ├── __init__.pyc
    │   │       │   │   ├── analyzer.py
    │   │       │   │   ├── analyzer.pyc
    │   │       │   │   └── idf.txt
    │   │       │   ├── dict.txt
    │   │       │   ├── finalseg
    │   │       │   │   ├── __init__.py
    │   │       │   │   ├── __init__.pyc
    │   │       │   │   ├── prob_emit.p
    │   │       │   │   ├── prob_emit.py
    │   │       │   │   ├── prob_emit.pyc
    │   │       │   │   ├── prob_start.p
    │   │       │   │   ├── prob_start.py
    │   │       │   │   ├── prob_start.pyc
    │   │       │   │   ├── prob_trans.p
    │   │       │   │   ├── prob_trans.py
    │   │       │   │   └── prob_trans.pyc
    │   │       │   └── posseg
    │   │       │       ├── __init__.py
    │   │       │       ├── __init__.pyc
    │   │       │       ├── char_state_tab.p
    │   │       │       ├── char_state_tab.py
    │   │       │       ├── char_state_tab.pyc
    │   │       │       ├── prob_emit.p
    │   │       │       ├── prob_emit.py
    │   │       │       ├── prob_emit.pyc
    │   │       │       ├── prob_start.p
    │   │       │       ├── prob_start.py
    │   │       │       ├── prob_start.pyc
    │   │       │       ├── prob_trans.p
    │   │       │       ├── prob_trans.py
    │   │       │       ├── prob_trans.pyc
    │   │       │       ├── viterbi.py
    │   │       │       └── viterbi.pyc
    │   │       ├── setup.py
    │   │       └── test
    │   │           ├── test.py
    │   │           ├── test_bug.py
    │   │           ├── test_change_dictpath.py
    │   │           ├── test_cut_for_search.py
    │   │           ├── test_cutall.py
    │   │           ├── test_file.py
    │   │           ├── test_multithread.py
    │   │           ├── test_no_hmm.py
    │   │           ├── test_pos.py
    │   │           ├── test_pos_file.py
    │   │           ├── test_pos_no_hmm.py
    │   │           ├── test_tokenize.py
    │   │           ├── test_tokenize_no_hmm.py
    │   │           ├── test_userdict.py
    │   │           ├── test_whoosh.py
    │   │           ├── test_whoosh_flie.py
    │   │           └── test_whoosh_flie_read.py
    │   ├── matplotlib-1.4.0.win32-py3.4.exe
    │   ├── pyparsing-2.0.2.win32-py3.4.exe
    │   ├── python-dateutil-2.2.win32-py3.4.exe
    │   └── six文件,直接将six.py放到Lib文件下
    │       ├── six-1.8.0
    │       │   ├── CHANGES
    │       │   ├── LICENSE
    │       │   ├── MANIFEST.in
    │       │   ├── PKG-INFO
    │       │   ├── README
    │       │   ├── __pycache__
    │       │   │   └── six.cpython-34.pyc
    │       │   ├── documentation
    │       │   │   ├── Makefile
    │       │   │   ├── conf.py
    │       │   │   └── index.rst
    │       │   ├── python-dateutil-2.2.win32-py3.4.exe
    │       │   ├── setup.cfg
    │       │   ├── setup.py
    │       │   ├── six.egg-info
    │       │   │   ├── PKG-INFO
    │       │   │   ├── SOURCES.txt
    │       │   │   ├── dependency_links.txt
    │       │   │   └── top_level.txt
    │       │   ├── six.py
    │       │   └── test_six.py
    │       └── six.py
    ├── 第一步,安装Python3.4.1
    │   └── python-3.4.1.msi
    ├── 第三部,安装nltk
    │   └── nltk-3.0.0.win32.exe
    └── 第二部,安装numpy
        └── numpy-1.8.1-win32-superpack-python3.4.exe

23 directories, 117 files