ubuntukylin基础 pip升级

镇场文:
       学儒家经世致用,行佛家普度众生,修道家全生保真,悟易理象数通变。以科技光耀善法,成就一良心博客。
______________________________________________________________________________________________________

Operating System:UbuntuKylin 16.04 LTS 64bit

code:

[email protected]:~$ sudo pip install --upgrade pip

reault:

The directory ‘/home/xinjin/.cache/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 ‘/home/xinjin/.cache/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 pip
  Downloading pip-9.0.1-py2.py3-none-any.whl (1.3MB)
    100% |████████████████████████████████| 1.3MB 13kB/s 
Installing collected packages: pip
  Found existing installation: pip 8.1.1
    Not uninstalling pip at /usr/lib/python2.7/dist-packages, outside environment /usr
Successfully installed pip-9.0.1
[email protected]:~$

______________________________________________________________________________________________________
若是您觉得此博文有可以改进的地方或者内容过时了,请评论,我会仔细思考的。
注:此博文仅用于科研学习,如果侵犯到您的权益,请及时告知,我会做出相应的处理。

时间: 2024-10-28 06:23:58

ubuntukylin基础 pip升级的相关文章

windows下的pip升级问题

当安装某软件,比如tensorflow时,提示版本不够 - 尝试用 python -m pip install –upgrade pip 升级,但报错 AttributeError: 'NoneType' object has no attribute 'bytes' 并仍有上面的升级提示: 尝试其他人说的 pip3 install –upgrade pip 升级,依然有这个错误: 问题原因:是因为存在python的多个版本 这时可使用下面两个语句进行更新: curl https://boots

pip升级报错 ImportError: cannot import name 'main'

[email protected]:/usr/bin# pip3 install pyaudio Traceback (most recent call last): File "/usr/bin/pip3", line 9, in <module> from pip import main ImportError: cannot import name 'main' 参考:https://stackoverflow.com/questions/28210269/impor

【pip升级导致错误】 多个pip导致明明已经安装了包但是报no module错误

原来一直用apt install 默认安装的pip 8.01版本,今天因为一些原因,将pip升级到了19.01.升级后就导致了错误. 直接pip installl --upgrade pip,发现报权限错误,错误提示使用sudo 或者使用--user选项. 后来发现:无论使用sudo 还是 --user选项,升级后的pip 19.01 被安装到了~/local/bin下:原来的8.01版本的pip是在/usr/bin下,因此现在有了两个pip! 使用which命令查看python和pip的路径

pip 升级 指向不同python版本

pip升级: pip install -U pip 查看版本: pip -V 查找pip安装位置 which pip 修改pip指向的python版本: nano pip修改第一行: #!/usr/local/bin/python3 # 须指向完整正确的python3安装位置 原文地址:https://www.cnblogs.com/ToCenTek/p/11332683.html

python -m pip install --upgrade pip升级失败

python -m pip install --upgrade pip升级失败 解决: 采用国内源: python -m pip install --upgrade pip -i https://pypi.douban.com/simple python -m pip install --upgrade pip -i  http://mirrors.aliyun.com/pypi/simple/ 原文地址:https://www.cnblogs.com/NirobertEinteson/p/12

ubuntukylin基础 查看pip的版本

镇场文:        学儒家经世致用,行佛家普度众生,修道家全生保真,悟易理象数通变.以科技光耀善法,成就一良心博客. ______________________________________________________________________________________________________ Operating System:UbuntuKylin 16.04 LTS 64bit mysql: Ver 14.14 Distrib 5.7.17, for Linu

windows下pip升级到8.1.2

升级pip只要切换到easy_install-3.5目录下:  easy_install-3.5 pip==8.1.2

ubuntukylin基础 groupadd 添加一个新的用户组时,提示 无法锁定 etc group

镇场文:       学儒家经世致用,行佛家普度众生,修道家全生保真,悟易理象数通变.以科技光耀善法,成就一良心博客.______________________________________________________________________________________________________ 我的系统:UbuntuKylin 16.04 LTS 64bit step0: 查询文件的 所有者 和 用户组 step1: 使用chgrp命令 更改指定文件所属的用户组. 但

python pip 升级每个包

pip本身不自带升级所有包的功能, 但可以通过下面的脚本实现. import pip from subprocess import call for dist in pip.get_installed_distributions(): call("pip install --upgrade " + dist.project_name, shell=True) 1.全局升级需要管理员权限. 2.virtualenv需要先激活环境.