如果我通过 pip install -e '.[all]' 安装了 gym,如何卸载它?
How to uninstall gym if I installed it by pip install -e '.[all]'?
我通过 pip install -e '.[all]'
安装了健身房。但是我现在想卸载它,我该如何实现呢?我试过 pip uninstall gym
,但没有成功,出现 Can't uninstall 'gym'. No files were found to uninstall.
这样的错误
我遇到了和你一样的问题
您必须手动将其删除。
看到这个答案。
python setup.py uninstall
我通过 pip install -e '.[all]'
安装了健身房。但是我现在想卸载它,我该如何实现呢?我试过 pip uninstall gym
,但没有成功,出现 Can't uninstall 'gym'. No files were found to uninstall.
我遇到了和你一样的问题
您必须手动将其删除。
看到这个答案。
python setup.py uninstall