J'ai eu une erreur lorsque j'ai essayé d'installer scikit-learn. L'environnement est Ubuntu, série Python 2.7.
J'ai essayé d'installer pip.
python
pip install scikit-learn
Abréviation
ImportError: Numerical Python (NumPy) is not installed.
scikit-learn requires NumPy >= 1.6.1.
Installation instructions are available on the scikit-learn website: http://scikit-learn.org/stable/install.html
Abréviation
Je ne suis pas familier avec numpy, alors j'ai essayé de le mettre avec pip pour le moment.
python
pip install numpy
Downloading/unpacking numpy
Downloading numpy-1.11.1.zip (4.7MB): 4.7MB downloaded
Running setup.py (path:/tmp/pip_build_vagrant/numpy/setup.py) egg_info for package numpy
Running from numpy source directory.
Abréviation
Cleaning up...
Command /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip_build_vagrant/numpy/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-RTxqgv-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_vagrant/numpy
Traceback (most recent call last):
File "/usr/bin/pip", line 9, in <module>
load_entry_point('pip==1.5.4', 'console_scripts', 'pip')()
File "/usr/lib/python2.7/dist-packages/pip/__init__.py", line 235, in main
return command.main(cmd_args)
File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 161, in main
text = '\n'.join(complete_log)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 72: ordinal not in range(128)
On m'a dit que le codec ascii ne pouvait pas être décodé.
Il semble que numpy devrait être entré avec apt-get. Je voulais juste mettre Tensorflow après cela, donc j'ai tout mis en fonction du site de référence.
python-Installez numpy
sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose
Cette fois, ça a marché (☝՞ ਊ՞) ☝
http://www.elecafe.info/contents/20151116-tensorflow-trial/
Recommended Posts