深度学习环境常用命令 深度学习环境常用命令
创建虚拟环境 conda create –n name python=3.7 激活环境 activate name 安装虚拟环境所需配置 有requirements.txt pip install -r requi
2022-10-10