如何在spyder中安装第三方包
这样就可以:!pip install --index https://pypi.tuna.tsinghua.edu.cn/simple opencv-python
·
这样就可以:
!pip install --index https://pypi.tuna.tsinghua.edu.cn/simple opencv-python
阿里的源
使用 --ignore-installed 覆盖安装
!pip install --ignore-installed --index https://pypi.tuna.tsinghua.edu.cn/simple tensorflow==2.4.1
https://mirrors.aliyun.com/pypi/simple/ 阿里
http://pypi.douban.com/simple/ 豆瓣
如果是Linux下
参考https://www.cnblogs.com/cqkangle/p/10503894.html
Python3:
sudo apt-get install python3
终端中输入python则进入python2,输入python3则进入python3
安装python2的相关包:
sudo apt-get install python-scipy
安装python3的相关包:
sudo apt-get install python3-scipy(numpy,matplotlib,pandas)
安装python3的pip包:
sudo apt-get install python3-pip
更新pip3:
pip3 install --upgrade pip
更新pip2:
pip2 install --upgrade pip
安装python3的sklean:
pip3 install sklearn
sudo apt-get install python3-sklearn
安装tensorflow:
CPU用户:
python 2.7版本的用户:$pip install tensorflow
python 3.x版本的用户:$pip3 install tensorflow
GPU用户:
python2.7版本的用户:$pip install --upgrade tensorflow-gpu
python3.x版本的用户:$pip3 install --upgrade tensorflow-gpu
更多推荐
已为社区贡献1条内容
所有评论(0)