最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

pip安装时无权限 Consider using the `--user` option or check the permissions.

运维笔记admin38浏览0评论

没权限的安装模块方法
当你不是root用户时,安装模块时报错:

$ pip install Cmake

ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: ‘/usr/lib64/python2.7/site-packages/cmake-3.14.4.dist-info’
Consider using the --user option or check the permissions.

因为代表进行全局安装,安装后全局可用

解决办法就是:

$ pip install --user Cmake
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won’t be maintained after that date. A future version of pip will drop support for Python 2.7.
Collecting Cmake
Using cached https://files.pythonhosted/packages/09/bb/0121c0ae40144b99420a1a0ea081d48ac4d77332600896d7e04bf23aa957/cmake-3.14.4-py2-none-manylinux2010_x86_64.whl
Installing collected packages: Cmake
Successfully installed Cmake-3.14.4

添加一个–user,代表仅该用户的安装,安装后仅该用户可用。处于安全考虑,尽量使用该命令进行安装。

记得卸载的时候也要添加 --user

发布评论

评论列表(0)

  1. 暂无评论