由于Python的库比较多,并且依赖关系比较复杂,所以请仔细阅读下面的说明,并按下面的说明来操作,减少问题出现的可能。 但是所列的安装方法说明里有较多的细节,也许和你的系统并不适配,所以可能会遇到问题。如果遇到问题请通过搜索引擎去查找解决的办法,并通过这个方式锻炼自己解决问题的能力。
可以参考后面所列的1.Winodws
或者2.Linux
章节所列的将Python环境安装到计算机里。
由于Anaconda集成了大部分的python包,因此能够很方便的开始使用。由于网络下载速度较慢,因此推荐使用镜像来提高下载的速度。镜像的使用方法可以参考:Anaconda镜像的说明文档
例如: https://mirrors.bfsu.edu.cn/anaconda/archive/Anaconda3-2020.11-Windows-x86_64.exe
在网站下载最新的conda安装文件,例如
wget https://mirrors.bfsu.edu.cn/anaconda/archive/Anaconda3-2020.11-Linux-x86_64.sh
然后运行
bash ./Anaconda3-2020.11-Linux-x86_64.sh
按照提示完成安装(记得需要自动加入环境变量
的设置),然后关闭终端,再打开终端
参考这里的conda安装和软件源设置说明
各系统都可以通过修改用户目录下的 .condarc
文件。Windows 用户无法直接创建名为 .condarc
的文件,可先执行 conda config --set show_channel_urls yes
生成该文件之后再修改。
Linux下,打开文件编辑器 gedit ~/.condarc
,然后把下面的内容拷贝到这个文件中:
channels:
- defaults
show_channel_urls: true
default_channels:
- https://mirrors.bfsu.edu.cn/anaconda/pkgs/main
- https://mirrors.bfsu.edu.cn/anaconda/pkgs/r
- https://mirrors.bfsu.edu.cn/anaconda/pkgs/msys2
custom_channels:
conda-forge: https://mirrors.bfsu.edu.cn/anaconda/cloud
msys2: https://mirrors.bfsu.edu.cn/anaconda/cloud
bioconda: https://mirrors.bfsu.edu.cn/anaconda/cloud
menpo: https://mirrors.bfsu.edu.cn/anaconda/cloud
pytorch: https://mirrors.bfsu.edu.cn/anaconda/cloud
pytorch-lts: https://mirrors.bfsu.edu.cn/anaconda/cloud
simpleitk: https://mirrors.bfsu.edu.cn/anaconda/cloud
pip config set global.index-url 'https://pypi.mirrors.ustc.edu.cn/simple/'
打开conda
的命令行程序,输入下面的命令
conda install jupyter scipy numpy sympy matplotlib pandas scikit-learn
conda install pytorch -c pytorch
pip3 install torchvision
conda create -n <your_env>
# example
conda create -n machinelearning
conda activate <your_env>
# example
conda activate machinelearning
# 帮助命令
conda -h
conda help
# 配置频道(已有)
conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/pkgs/main/
# 退出当前环境
conda deactivate
# 查看基本信息
conda info
conda info -h
# 查看当前存在环境
conda env list
conda info --envs
# 删除环境
conda remove -n <your_env> --all
dpkg -l | grep -i nvidia
sudo apt-get purge nvidia-driver-xxx
apt-cache search nvidia | grep 460
sudo apt-get install nvidia-driver-460
根据自己的需要可以安装更高的版本。
conda install cudatoolkit=8.0 -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/linux-64/
根据自己的需要安装更高的版本