两种常用的包管理工具:pip 和conda
pip:python自带的包管理工具,使用pip安装包的命令,pip install
conda :anaconda 附带的包管理工具,使用conda安装包的命令,conda install
由于包的安装源在境外,境内可能出现访问速度较慢或无法连接的情况,可以使用清华镜像
pip 清华源:
官网:https://mirrors.tuna.tsinghua.edu.cn/help/pypi/
使用方法:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple …
conda 清华源:
官网:https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/
使用方法:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- 一般来说,使用conda 和pip 安装没有区别,任意选用一个即可,某些情况下,其中一个会更好
- 对于catboost,conda 没有官方安装源,只能用pip
- 对于tensorflow, 推荐使用conda,因为conda 可以同时配置好GPU驱动,免去驱动配置、cuna版本管理的烦恼
查看已经安装的包:conda list
如果遇到import一个包的模块显示不存在时,可进行更新包再重试:
pip install --upgrade -i https://pypi.tuna.tsinghua.edu.cn/simple seaborn