只是想了解更多关于Python的scikit-learn包,同时在我正在做的在线课程中学习ML。我正在使用Cloud9在线版,因为我使用的是Chromebook。
但是,当我尝试为我的ide安装scikit-learn软件包时,始终拒绝访问。我尝试了以下一段代码......
pip install -U scikit-learn
而且,我得到了这个回复..
running install_lib
creating /usr/local/lib/python2.7/dist-packages/sklearn
error: could not create '/usr/local/lib/python2.7/dist-packages/sklearn': Permission denied
----------------------------------------
Cleaning up...
Command /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip_build_ubuntu/scikit- learn/setup.py';exec(compile(getattr(tokenize, 'open', open) (__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-Oo3fnX-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_ubuntu/scikit-learn
有没有人有为Cloud9 IDE安装sklearn软件包的经验?它提到了使用pythonpath,这是它目前包含的内容......
/usr/local/lib/python2.7/dist-packages:/usr/local/lib/python3.4/dist-packages:/usr/local/lib/python3.5/dist-packages
如果有人有任何线索/教程我可以按照这个安装,我会非常感谢你的帮助!
答案 0 :(得分:0)
问题与scikit-learn或python无关。 你需要在你的pip命令之前使用sudo,如下所示:
sudo pip install -U scikit-learn