Python
安装Python
推荐使用Anaconda3安装Python,Anaconda3里面包含了Python和Jupyter。
Anaconda镜像管理
手动添加
进入菜单 Home 点击 Channels 管理镜像
命令添加
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
#添加清华镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
pip
安装pip
你可以通过以下命令来判断是否已安装:
pip --version # Python2.x 版本命令
pip3 --version # Python3.x 版本命令
如果你还未安装,则可以使用以下方法来安装:
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py # 下载安装脚本
$ sudo python get-pip.py # 运行安装脚本
注意:用哪个版本的 Python 运行安装脚本,pip 就被关联到哪个版本,如果是 Python3 则执行以下命令:
$ sudo python3 get-pip.py # 运行安装脚本。
一般情况 pip 对应的是 Python 2.7,pip3 对应的是 Python 3.x。
升级pip版本
pip install pip -U # 升级 pip 到最新的版本
pip镜像
# 豆瓣
https://pypi.doubanio.com/simple/
# 阿里云
https://mirrors.aliyun.com/pypi/simple/
# 清华大学
https://pypi.tuna.tsinghua.edu.cn/simple/
临时使用镜像
pip install some-package -i https://mirrors.aliyun.com/pypi/simple/
备注:some-package 为Python的库名或包名
设置默认镜像
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ #配置pip镜像
Jupyter Notebook
配置jupyter
jupyter notebook password 设置密码
jupyter notebook --ip=IP地址 --port=8888
设置中文界面
若想将 Jupyter Notebook 的操作界面改成中文,需在系统“环境变量”里面增加“用户变量”。
变量名 LANG 变量值 zh_CN.UTF8
代码自动补全
1、安装nbextensions
pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user
2、安装nbextensions_configurator
pip install jupyter_nbextensions_configurator
jupyter nbextensions_configurator enable --user
3、重启jupyter
在弹出的主页面里,能看到增加了一个Nbextensions标签页,在这个页面里,勾选Hinterland即启用了代码自动补全,现在打开一个Notebook看看是否方便了许多。
运行指定目录代码
@echo off
set code_path=code\
cd C:/Users/Admin
echo.
start "Jupyter Notebook 客户端(请勿关闭)" cmd /k "jupyter notebook "%code_path%
start explorer %cd%\%code_path%
用以上代码创建bat文件,code/ 即代码目录
Pytorch
PyTorch是使用GPU和CPU优化的深度学习张量库。
使用Anaconda安装
进入菜单 Environments 选择 Not installed 管理镜像
备注:推荐使用Anaconda安装,使用命令添加容易出错。
在线安装
pip install torch===1.5.1+cpu torchvision===0.6.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
# 以上命令为CPU版本,若安装GPU版本,则去掉代码里面的 +cpu
离线安装
进入 https://download.pytorch.org/whl/torch_stable.html 将对于版本下载到本地
pip install E:/torch-1.5.1+cpu-cp37-cp37m-win_amd64.whl
pip install E:/torchvision-0.6.1+cpu-cp37-cp37m-win_amd64.whl