conda env list 列出环境列表
conda activate [环境名] 切换到[环境名]这个环境下
conda install [包名] conda安装包
conda uninstall [包名] 卸载包
conda clean --all 清理缓存、tarball文件以及未使用的文件
什么时候用?
之前安装包的时候进度条卡住不动了,于是我直接关闭了命令行重新安装,结果报错
CondaVerificationError: The package for qt-main located at C:\Users\cheng_zhid\.conda\pkgs\qt-main-5.15.2-he8e5bd7_7 appears to be corrupted. The path 'Library/translations/qtxmlpatterns_zh_TW.qm' specified in the package manifest cannot be found.
问ai说可能是包缓存中的文件损坏了。你可以通过清理缓存来强制 Conda 重新下载包。
然后用clean --all清理后重新安装
标签:包名,缓存,重新安装,conda,常用命令,main,安装包 From: https://www.cnblogs.com/chengzhid/p/18622241