您的位置:首页 > 其它

Ubuntu16.04使用pip3安装第三方库

2017-05-22 19:57 274 查看
Ubuntu16.04使用pip3和pip安装numpy,scipy,matplotlib

安装Python3第三方库:

sudo apt install python3-pip

pip3 install numpy

pip3 install scipy

pip3 install matplotlib

报错,安装matplotlib库需要安装python3-tk库:

sudo apt-get install python3-tk

pip3 install matplotlib

报错,安装matplotlib库需要安装nose库:

pip3 install nose

 

安装Python2第三方库:

sudo pip install numpy

sudo pip install scipy

sudo pip install matplotlib

sudo pip install nose

 

Ubuntu16.04使用pip3和pip安装numpy,scipy,matplotlib
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: