美文网首页
Python2 与 Python3的pip安装指定

Python2 与 Python3的pip安装指定

作者: 荒剑离 | 来源:发表于2019-12-12 12:24 被阅读0次

当系统环境或虚拟环境中安装了python2和python3时,使用pip安装模块时可能会安装在python2的包目录下,于是就会出现在python3下调包出现报错。

除了使用pip2或pip3来指定,也可以使用python命令来指定,譬如:
python3 -m pip install some_module

参考:
How to override the pip command to Python3.x instead of Python2.7?

相关文章

网友评论

      本文标题:Python2 与 Python3的pip安装指定

      本文链接:https://www.haomeiwen.com/subject/dfzzgctx.html