我是学生,我正在部门计算机,系统Linux 7.2上做项目。现在我正在尝试安装pip,以便我可以使用它安装python包。
我已下载get-pip.py
并尝试通过python get-pip.py
进行安装。它给了我:
Collecting pip
Downloading pip-8.1.1-py2.py3-none-any.whl (1.2MB)
100% |████████████████████████████████| 1.2MB 471kB/s
Collecting wheel
Downloading wheel-0.29.0-py2.py3-none-any.whl (66kB)
100% |████████████████████████████████| 71kB 764kB/s
Installing collected packages: pip, wheel
Exception:
Traceback (most recent call last):
File "/tmp/tmpqybTwL/pip.zip/pip/basecommand.py", line 209, in main
status = self.run(options, args)
File "/tmp/tmpqybTwL/pip.zip/pip/commands/install.py", line 317, in run
prefix=options.prefix_path,
File "/tmp/tmpqybTwL/pip.zip/pip/req/req_set.py", line 732, in install
**kwargs
File "/tmp/tmpqybTwL/pip.zip/pip/req/req_install.py", line 835, in install
self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
File "/tmp/tmpqybTwL/pip.zip/pip/req/req_install.py", line 1030, in move_wheel_files
isolated=self.isolated,
File "/tmp/tmpqybTwL/pip.zip/pip/wheel.py", line 344, in move_wheel_files
clobber(source, lib_dir, True)
File "/tmp/tmpqybTwL/pip.zip/pip/wheel.py", line 315, in clobber
ensure_dir(destdir)
File "/tmp/tmpqybTwL/pip.zip/pip/utils/__init__.py", line 83, in ensure_dir
os.makedirs(path)
File "/usr/lib64/python2.7/os.py", line 157, in makedirs
mkdir(name, mode)
OSError: [Errno 13] Permission denied: '/usr/lib/python2.7/site-packages/pip'
然后,我尝试使用sudo python get-pip.py
安装,但是,我得到"xxx is not in the sudoers file. This incident will be reported."
所以,我想知道我是否没有获得root权限,也没有权利做sudo ......但我不确定这个......
有什么建议可以解决这个问题吗?最后,我想安装scipy
和gensim
。
答案 0 :(得分:4)
系统是否向您发送virtualenv
命令?
Then you should read about virtualenvs.无论如何都派上用场。
如果不是,您可以使用the approach by Jasper van den Bosch
答案 1 :(得分:0)
您需要使用虚拟环境,并在虚拟环境中安装pip包。或者使用pip进行全局安装,即以root用户身份进行系统安装
答案 2 :(得分:-1)
使用easy_install尝试安装pip 在终端中尝试以下命令:
sudo su
easy_install pip