conda uninstall -n yyy --all # 删除没装完的环境
conda remove -n myproject --all # 删除已经存在的环境
conda create -n new_env --clone exist_env # 克隆一个环境
conda info --env # 现有环境
conda clean -p # conda清理缓存(没删除环境,放心使用)
conda clean -t # conda清理缓存(没删除环境,放心使用)
ln -s 要软链的文件夹目录 软链到的位置
ln -s /root/jxw/mmengine /root/jxw/mmdetection/mmengine
将mmengine 软连接到mmdetection中的mmengine中,以方便全局搜索
注:在vscode中必须要用全路径,否则软链接进不去
调试时推荐的参数设置