摘要: conda list #查看环境中已经安装了的软件包 conda env list # 查看当前存在那些虚拟环境,或者 conda info -e conda update conda # 检查更新当前的conda版本 conda install package_name=版本号 # 下载安装包 c 阅读全文
posted @ 2022-02-08 17:13 Eswing 阅读(23) 评论(0) 推荐(0) 编辑
摘要: pip --version # 查看已经安装了的pip版本 pip install -U pip # 升级pip pip list # 查看当前已经安装好了包及版本, 或 pip freeze pip install package_name==version # 下载安装包 pip uninsta 阅读全文
posted @ 2022-02-08 17:10 Eswing 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 修改pip安装源 全局修改 阿里源: https://mirrors.aliyun.com/pypi/simple/ 清华源: https://pypi.tuna.tsinghua.edu.cn/simple pip config set global.index-url https://pypi. 阅读全文
posted @ 2022-02-08 17:06 Eswing 阅读(77) 评论(0) 推荐(0) 编辑