赞
踩
系统中同时装了 Python2 和 Python3,这时如果使用 pip 安装模块,可能会出现本来需要安装到 Python2 的模块结果却被安装到了 Python3 下的情况。
1、查看 pip 命令当前对应的 Python 版本和路径
- pip -V
- pip 18.0 from /usr/local/lib/python3.5/dist-packages/pip (python 3.5)
-
- pip2 -V # 或 python2 -m pip -V
- pip 8.1.1 from /usr/lib/python2.7/dist-packages (python 2.7)
-
- pip3 -V #或 python3 -m pip -V
- pip 18.0 from /usr/local/lib/python3.5/dist-packages/pip (python 3.5)
2、通过 pip 指定 Python 的版本进行安装
- #安装到 Python2.X 版本中
- pip2 install 模块名
- #或
- python2 -m pip install 模块名
-
- #安装到 Python3.X 版本中
- pip3 install 模块名
- #或
- python3 -m pip install 模块名
1、卸载 pip 所安装的模块
pip uninstall 模块名
2、卸载指定版本,请参考安装命令
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。