技术分享

记几个小小的Conda操作

普通创建环境

conda create -n py310 python=3.10

指定目录创建虚拟环境

conda create  -p C:\The\Path python=3.10

列出现有环境

conda env list

pip清华源下载

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -r ./requirements_versions.txt

复制环境

conda create -n 新环境名 --clone 旧环境名

Leave a Reply

Your email address will not be published.Required fields are marked *