自学内容网 自学内容网

pycharm 安装对应python版本的pip

pycharm:

调出终端命令行
Alt+F12 

返回用户级别的Python安装基础目录。
python3 -m site --user-base

添加新的Python版本到update-alternatives
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1    将python3的默认路径/usr/bin/python3替换为/usr/bin/python3.8


列出当前所有可用的Python版本
sudo update-alternatives --config python

查看python版本
python3 --version


安装pip3
python3 -m ensurepip  
python3 -m pip install --upgrade pip
管理员权限中兴镜像下载安装pip3
sudo python3 -m pip install --upgrade pip  -i https://artnj.zte.com.cn/artifactory/api/pypi/public-pypi-virtual/simple    // python安装库时使用的镜像源


查找pip3的安装位置:  例如,如果你的输出是/home/yourusername/.local,那么pip3可能位于/home/yourusername/.local/bin/pip3
python3 -m site --user-base
将pip3添加到PATH:
export PATH="$PATH:/home/yourusername/.local/bin"
验证pip3是否可用:
pip3 --version


原文地址:https://blog.csdn.net/qq_72758246/article/details/142341195

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!