conda 使用国内镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda 在当前目录创建 python 环境
conda create -p ./runtime python=3.8
-p 和 -n 不能同时使用!
创建环境启动脚本 env.bat
@set PYTHON=runtime\python.exe
@set PATH=%PATH%;%cd%\runtime;%cd%\runtime\Scripts
设置 pip 使用 国内源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/
本站文章除注明转载/出处外,均为博主 spooking 原创或翻译,转载前请务必署名。