Anacondas unterstützte Python-Version enthielt 3.3, daher habe ich sie aktualisiert. Ich musste es genau so machen, wie es offiziell geschrieben wurde.
http://docs.continuum.io/conda/intro.html
conda update conda
Plötzlich fand ich es hier hier, obwohl es hier nicht offiziell geschrieben ist. Wenn Sie dies nicht tun, gibt das Aktivierungsskript einen Fehler zurück und Sie werden süchtig.
conda create -n py33 python=3.3 anaconda
Es wird eine Weile dauern.
source ~/anaconda/bin/activate py33
(py33) ~
% python
Python 3.3.2 |Anaconda 1.7.0 (x86_64)| (default, Aug 5 2013, 15:07:24)
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
Versuchen Sie es mit NLTK
>>> import nltk
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'nltk'
>>>
Das. Anscheinend enthält Anacondas py33-Umgebung nltk nicht. Honke scheint begonnen zu haben, python3.x zu unterstützen, aber es ist immer noch eine Alpha-Version. Ist es noch nicht im Anaconda-Repository enthalten? Es tut uns leid.
Recommended Posts