forked from nltk/nltk.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.html
More file actions
153 lines (139 loc) · 8.81 KB
/
install.html
File metadata and controls
153 lines (139 loc) · 8.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Installing NLTK — NLTK 3.5 documentation</title>
<link rel="stylesheet" href="_static/agogo.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
<script src="_static/jquery.js"></script>
<script src="_static/underscore.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/language_data.js"></script>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="Installing NLTK Data" href="data.html" />
<link rel="prev" title="NLTK News" href="news.html" />
</head><body>
<div class="header-wrapper" role="banner">
<div class="header">
<div class="headertitle"><a
href="index.html">NLTK 3.5 documentation</a></div>
<div class="rel" role="navigation" aria-label="related navigation">
<a href="news.html" title="NLTK News"
accesskey="P">previous</a> |
<a href="data.html" title="Installing NLTK Data"
accesskey="N">next</a> |
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |
<a href="genindex.html" title="General Index"
accesskey="I">index</a>
</div>
</div>
</div>
<div class="content-wrapper">
<div class="content">
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="installing-nltk">
<h1>Installing NLTK<a class="headerlink" href="#installing-nltk" title="Permalink to this headline">¶</a></h1>
<p>NLTK requires Python versions 3.5, 3.6, 3.7, or 3.8</p>
<p>For Windows users, it is strongly recommended that you go through this guide to install Python 3 successfully <a class="reference external" href="https://docs.python-guide.org/starting/install3/win/#install3-windows">https://docs.python-guide.org/starting/install3/win/#install3-windows</a></p>
<div class="section" id="setting-up-a-python-environment-mac-unix-windows">
<h2>Setting up a Python Environment (Mac/Unix/Windows)<a class="headerlink" href="#setting-up-a-python-environment-mac-unix-windows" title="Permalink to this headline">¶</a></h2>
<p>Please go ahead from this guide to learn how to manage your virtual environment managers before you install NLTK, <a class="reference external" href="https://docs.python-guide.org/dev/virtualenvs/">https://docs.python-guide.org/dev/virtualenvs/</a></p>
<p>Alternatively, you can use the Anaconda distribution installer that comes “batteries included” <a class="reference external" href="https://www.anaconda.com/distribution/">https://www.anaconda.com/distribution/</a></p>
</div>
<div class="section" id="mac-unix">
<h2>Mac/Unix<a class="headerlink" href="#mac-unix" title="Permalink to this headline">¶</a></h2>
<ol class="arabic simple">
<li><p>Install NLTK: run <code class="docutils literal notranslate"><span class="pre">pip</span> <span class="pre">install</span> <span class="pre">--user</span> <span class="pre">-U</span> <span class="pre">nltk</span></code></p></li>
<li><p>Install Numpy (optional): run <code class="docutils literal notranslate"><span class="pre">pip</span> <span class="pre">install</span> <span class="pre">--user</span> <span class="pre">-U</span> <span class="pre">numpy</span></code></p></li>
<li><p>Test installation: run <code class="docutils literal notranslate"><span class="pre">python</span></code> then type <code class="docutils literal notranslate"><span class="pre">import</span> <span class="pre">nltk</span></code></p></li>
</ol>
<p>For older versions of Python it might be necessary to install setuptools (see <a class="reference external" href="http://pypi.python.org/pypi/setuptools">http://pypi.python.org/pypi/setuptools</a>) and to install pip (<code class="docutils literal notranslate"><span class="pre">sudo</span> <span class="pre">easy_install</span> <span class="pre">pip</span></code>).</p>
</div>
<div class="section" id="windows">
<h2>Windows<a class="headerlink" href="#windows" title="Permalink to this headline">¶</a></h2>
<p>These instructions assume that you do not already have Python installed on your machine.</p>
<div class="section" id="bit-binary-installation">
<h3>32-bit binary installation<a class="headerlink" href="#bit-binary-installation" title="Permalink to this headline">¶</a></h3>
<ol class="arabic simple">
<li><p>Install Python 3.8: <a class="reference external" href="http://www.python.org/downloads/">http://www.python.org/downloads/</a> (avoid the 64-bit versions)</p></li>
<li><p>Install Numpy (optional): <a class="reference external" href="https://www.scipy.org/scipylib/download.html">https://www.scipy.org/scipylib/download.html</a></p></li>
<li><p>Install NLTK: <a class="reference external" href="http://pypi.python.org/pypi/nltk">http://pypi.python.org/pypi/nltk</a></p></li>
<li><p>Test installation Process: <code class="docutils literal notranslate"><span class="pre">Start>Python38</span></code>, then type <code class="docutils literal notranslate"><span class="pre">import</span> <span class="pre">nltk</span></code></p></li>
</ol>
</div>
</div>
<div class="section" id="installing-third-party-software">
<h2>Installing Third-Party Software<a class="headerlink" href="#installing-third-party-software" title="Permalink to this headline">¶</a></h2>
<p>Please see: <a class="reference external" href="https://github.com/nltk/nltk/wiki/Installing-Third-Party-Software">https://github.com/nltk/nltk/wiki/Installing-Third-Party-Software</a></p>
</div>
<div class="section" id="installing-nltk-data">
<h2>Installing NLTK Data<a class="headerlink" href="#installing-nltk-data" title="Permalink to this headline">¶</a></h2>
<p>After installing the NLTK package, please do install the necessary datasets/models for specific functions to work.</p>
<p>If you’re unsure of which datasets/models you’ll need, you can install the “popular” subset of NLTK data, on the command line type <cite>python -m nltk.downloader popular</cite>, or in the Python interpreter <cite>import nltk; nltk.download(‘popular’)</cite></p>
<p>For details, see <a class="reference external" href="http://www.nltk.org/data.html">http://www.nltk.org/data.html</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sidebar">
<h3>Table of Contents</h3>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="news.html">NLTK News</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">Installing NLTK</a></li>
<li class="toctree-l1"><a class="reference internal" href="data.html">Installing NLTK Data</a></li>
<li class="toctree-l1"><a class="reference internal" href="contribute.html">Contribute to NLTK</a></li>
<li class="toctree-l1"><a class="reference external" href="https://github.com/nltk/nltk/wiki/FAQ">FAQ</a></li>
<li class="toctree-l1"><a class="reference external" href="https://github.com/nltk/nltk/wiki">Wiki</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/nltk.html">API</a></li>
<li class="toctree-l1"><a class="reference external" href="http://www.nltk.org/howto">HOWTO</a></li>
</ul>
<div role="search">
<h3 style="margin-top: 1.5em;">Search</h3>
<form class="search" action="search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
</form>
</div>
</div>
<div class="clearer"></div>
</div>
</div>
<div class="footer-wrapper">
<div class="footer">
<div class="left">
<div role="navigation" aria-label="related navigaton">
<a href="news.html" title="NLTK News"
>previous</a> |
<a href="data.html" title="Installing NLTK Data"
>next</a> |
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |
<a href="genindex.html" title="General Index"
>index</a>
</div>
<div role="note" aria-label="source link">
<br/>
<a href="_sources/install.rst.txt"
rel="nofollow">Show Source</a>
</div>
</div>
<div class="right">
<div class="footer" role="contentinfo">
© Copyright 2020, NLTK Project.
Last updated on Apr 13, 2020.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 2.4.4.
</div>
</div>
<div class="clearer"></div>
</div>
</div>
</body>
</html>