无法在虚拟环境中本地安装PyMySQL [Errno 13]权限被拒绝

时间:2018-01-04 03:26:30

标签: macos permissions pip virtualenv pymysql

我正在尝试安全地安装PyMySQL。我已经阅读了很多关于为什么sudo pip install应该避免的好论点,但有时似乎无法摆脱它。

有没有办法在不使用PyMySQL的情况下在OSX中本地安装sudo

(VirtualEnv) : ^.^ :pip install --no-cache-dir --user PyMySQL
Collecting PyMySQL
  Downloading PyMySQL-0.8.0-py2.py3-none-any.whl (83kB)
    100% |████████████████████████████████| 92kB 1.8MB/s 
Installing collected packages: PyMySQL
Exception:
Traceback (most recent call last):
  File "/Library/Python/2.7/site-packages/pip/basecommand.py", line 215, in main
    status = self.run(options, args)
  File "/Library/Python/2.7/site-packages/pip/commands/install.py", line 342, in run
prefix=options.prefix_path,
  File "/Library/Python/2.7/site-packages/pip/req/req_set.py", line 784, in install
    **kwargs
  File "/Library/Python/2.7/site-packages/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/req/req_install.py", line 1064, in move_wheel_files
    isolated=self.isolated,
  File "/Library/Python/2.7/site-packages/pip/wheel.py", line 247, in move_wheel_files
    prefix=prefix,
  File "/Library/Python/2.7/site-packages/pip/locations.py", line 153, in distutils_scheme
    i.finalize_options()
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/install.py", line 346, in finalize_options
    self.create_home_path()
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/install.py", line 565, in create_home_path
    os.makedirs(path, 0700)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py", line 150, in makedirs
    makedirs(head, mode)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py", line 150, in makedirs
    makedirs(head, mode)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py", line 150, in makedirs
    makedirs(head, mode)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py", line 157, in makedirs
    mkdir(name, mode)
OSError: [Errno 13] Permission denied: '/Users/TomNason/Library/Python/2.7'

1 个答案:

答案 0 :(得分:1)

要在虚拟环境中安装,请运行此命令。

postfix = "" if bar is 0 else str(bar) print(foo.upper() + "_" + postfix)

一般情况下 - 如果您无法在虚拟环境中使用pip安装PyMySQL(即使您使用pip install --install-option="--prefix=/Users/TomNason/VirtualEnv/lib/python2.7" PyMySQL选项),也可以尝试...

--user

这对我来说仍然是一个奇怪的情况。欢迎任何关于为什么我必须明确说明我的python目录的评论。我认为使用虚拟环境的原因是pip总是选择安装在那里。

相关问题