我正在尝试安装python virtualenv。 所以我运行了命令
pip install virtualenv
我遇到了这些错误。
Exception:
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/basecommand.py", line 215, in main
status = self.run(options, args)
File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/commands/install.py", line 342, in run
prefix=options.prefix_path,
File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_set.py", line 784, in install
**kwargs
File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_install.py", line 851, in install
self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_install.py", line 1064, in move_wheel_files
isolated=self.isolated,
File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/wheel.py", line 345, in move_wheel_files
clobber(source, lib_dir, True)
File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/wheel.py", line 323, in clobber
shutil.copyfile(srcfile, destfile)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 83, in copyfile
with open(dst, 'wb') as fdst:
IOError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/virtualenv.py'
答案 0 :(得分:3)
您正在将virtualenv
软件包安装在Mac的系统级目录中。 Mac使用预先安装的旧版Python(2.7.10)。要在您标识的系统目录中安装virtualenv
软件包,您需要使用sudo
,因为写入系统目录需要提升权限。
sudo pip install virtualenv
另一个选择是使用--user
选项将其安装到用户目录。
pip install --user virtualenv
答案 1 :(得分:1)
尝试使用sudo运行它:
sudo pip install virtualenv
或者显式调用python命令
python -m pip install virtualenv