【问题标题】:Error installing virtualenvwrapper安装 virtualenvwrapper 时出错
【发布时间】:2018-01-30 20:56:51
【问题描述】:

我在尝试安装 virtualenvwrapper 时遇到如下所示的错误。我做错了什么?

我使用的是 Mac OSX。我正在使用 pip 作为 sudo 进行安装。如果我在没有 sudo 的情况下使用 pip,我也会得到同样的错误

Last login: Tue Aug 22 09:45:59 on ttys001
John:~ tcl$ sudo pip install virtualenvwrapper
Password:
The directory '/Users/tcl/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/Users/tcl/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting virtualenvwrapper
  Downloading virtualenvwrapper-4.7.2.tar.gz (90kB)
    100% |████████████████████████████████| 92kB 1.2MB/s 
Requirement already satisfied: virtualenv in /Library/Python/2.7/site-packages (from virtualenvwrapper)
Requirement already satisfied: virtualenv-clone in /Library/Python/2.7/site-packages (from virtualenvwrapper)
Collecting stevedore (from virtualenvwrapper)
  Downloading stevedore-1.25.0-py2.py3-none-any.whl
Requirement already satisfied: pbr!=2.1.0,>=2.0.0 in /Library/Python/2.7/site-packages (from stevedore->virtualenvwrapper)
Collecting six>=1.9.0 (from stevedore->virtualenvwrapper)
  Downloading six-1.10.0-py2.py3-none-any.whl
Installing collected packages: six, stevedore, virtualenvwrapper
  Found existing installation: six 1.4.1
    DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Uninstalling six-1.4.1:
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 778, in install
    requirement.uninstall(auto_confirm=True)
  File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_install.py", line 754, in uninstall
    paths_to_remove.remove(auto_confirm)
  File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_uninstall.py", line 115, in remove
    renames(path, new_path)
  File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/utils/__init__.py", line 267, in renames
    shutil.move(old, new)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 302, in move
    copy2(src, real_dst)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 131, in copy2
    copystat(src, dst)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 103, in copystat
    os.chflags(dst, st.st_flags)
OSError: [Errno 1] Operation not permitted: '/tmp/pip-TtCbYs-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six-1.4.1-py2.7.egg-info'
John:~ tcl$ 

我没有在 Google 中看到此特定错误。

我确实得到了很多搜索不太具体的查询的结果:

"sudo pip install virtualenvwrapper" error

但是,这些结果有多种解决方案(变通方法),我不确定它们是否适合我当前的问题。

【问题讨论】:

标签: python virtualenv virtualenvwrapper


【解决方案1】:

我在某个时候遇到了这个确切的问题。以下2个步骤解决了这个问题:

  1. 在 sudo 命令中使用 -H 标志
  2. 像这样忽略安装“六”包

    pip install virtualenvwrapper --ignore-installed 6

希望这会有所帮助。另一方面,最好通过 Brew 包管理器安装它。

【讨论】:

  • 以下对我有用:sudo pip install --user virtualenvwrapper。我对这一切都很陌生。我的经验主要是在 Windows 上使用 Java,这是我第一次涉足 Python,我对 Mac 并没有太多经验。谢谢您的帮助。 Brew cmd 会是什么样子?
  • @John 您可以在 link 找到有关 Homebrew 的更多信息。由于您将在 MacOS 上工作,因此熟悉 Homebrew 对您有很大帮助。在安装各种软件包及其各自的依赖项方面,它将为您节省大量时间和精力。 Brew 命令非常简单,例如brew install <package name> 将负责安装所需的包和依赖项。
【解决方案2】:

我认为它已经覆盖了here

我不想听起来刺耳或令人讨厌,但是这个问题很容易用谷歌搜索,并且在整个网络和 StackOverflow 上都得到了一次又一次的回答。

【讨论】:

    猜你喜欢
    • 2014-02-09
    • 2014-09-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-11-06
    • 1970-01-01
    • 2019-02-16
    相关资源
    最近更新 更多