美文网首页
003 unbuntu下Anconda安装python库

003 unbuntu下Anconda安装python库

作者: Oscar_hailiang | 来源:发表于2019-03-06 13:39 被阅读0次
00 为conda添加源或移除源
  • 添加源
conda config --add channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'
conda config --set show_channel_urls yes
  • 删除源
conda config --remove channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'
01 conda安装PyQt库
# ModuleNotFoundError: No module named 'PyQt4'
# 
# PyQt4的安装
conda install pyqt=4
# PyQt5的安装
conda install pyqt=5
02 conda安装GDAL库
conda install gdal-2.3.3  #可以不指定版本
03 conda安装opencv库
conda install  opencv
04 skimage图像库
# ModuleNotFoundError: No module named 'skimage'
conda install scikit-image
05 psycopg2(Postgresql数据库)
conda install  psycopg2
06 requests网页请求库
conda install  requests
07 # 安装beautifulsoup(bs4)库
pip install bs4
08 安装pandas库
pip install pandas

相关文章

网友评论

      本文标题:003 unbuntu下Anconda安装python库

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