gpt4 book ai didi

python - 在我的 Mac 上以 root 身份运行 pip 时获取 "Permission Denied"

转载 作者:太空宇宙 更新时间:2023-11-03 12:00:10 29 4
gpt4 key购买 nike

我已经开始使用我的 Mac 安装 Python 包,就像我在工作时使用 Windows PC 一样;然而,在我的 Mac 上,我在写入日志文件或站 pip 包时经常遇到权限被拒绝错误。

因此我想到了运行pip install <package>sudo 下但考虑到我只想将它安装在我当前的用户帐户下,这是对 sudo 的安全/可接受的使用吗?

日志文件 I/O 错误的回溯示例:

Command /usr/bin/python -c "import setuptools;__file__='/Users/markwalker/build/pycrypto/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --single-version-externally-managed --record /var/folders/tq/hy1fz_4j27v6rstzzw4vymnr0000gp/T/pip-k6f2FU-record/install-record.txt failed with error code 1 in /Users/markwalker/build/pycrypto
Storing complete log in /Users/markwalker/Library/Logs/pip.log
Traceback (most recent call last):
File "/usr/local/bin/pip", line 8, in <module>
load_entry_point('pip==1.1', 'console_scripts', 'pip')()
File "/Library/Python/2.7/site-packages/pip-1.1-py2.7.egg/pip/__init__.py", line 116, in main
return command.main(args[1:], options)
File "/Library/Python/2.7/site-packages/pip-1.1-py2.7.egg/pip/basecommand.py", line 141, in main
log_fp = open_logfile(log_fn, 'w')
File "/Library/Python/2.7/site-packages/pip-1.1-py2.7.egg/pip/basecommand.py", line 168, in open_logfile
log_fp = open(filename, mode)
IOError: [Errno 13] Permission denied: '/Users/markwalker/Library/Logs/pip.log'

更新这可能取决于权限,但最好的方法是为您的 Python 项目使用虚拟环境。正在运行 sudo pip除非绝对必要,否则应避免使用。

最佳答案

使用 virtual environment :

$ virtualenv myenv
.. some output ..
$ source myenv/bin/activate
(myenv) $ pip install what-i-want

当您想要为全局的、系统范围的 Python 安装安装东西时,您只能使用 sudo 或提升的权限。

最好使用为您隔离包的虚拟环境。这样你就可以在不污染全局 python 安装的情况下玩耍。

作为奖励,virtualenv 不需要提升的权限。

关于python - 在我的 Mac 上以 root 身份运行 pip 时获取 "Permission Denied",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51481895/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com