Uninstall a package installed with `pip install .`
在从开发存储库安装python包时,我通常导航到找到并执行
1 | pip install . |
这将在
如何卸载以这种方式安装的包?
只需运行
这就是你所需要的。
有关更多信息,请访问以下链接:https://pip.pypa.io/en/stable/reference/pip_uninstall/
在从开发存储库安装python包时,我通常导航到找到并执行
1 | pip install . |
这将在
如何卸载以这种方式安装的包?
只需运行
这就是你所需要的。
有关更多信息,请访问以下链接:https://pip.pypa.io/en/stable/reference/pip_uninstall/