标签:安装 class 使用 install package 2.7 pytho 同时存在 code
Ubuntu16.04x86 + python3.5
ubuntu中同时存在python2.7
和 python3.5
sudo pip install package-name
它将默认安装 python2
版本的package-name
如果打算安装在python3上,请进行如下操作:
sudo apt-get install python3-setuptools
sudo apt-get install python3-pip
pip3 install package-name
标签:安装 class 使用 install package 2.7 pytho 同时存在 code
原文地址:https://www.cnblogs.com/hester/p/10503371.html