Skip to content

Python 卸载所有库

复制本地路径 | 在线编辑

Powershell:

pip freeze | ForEach-Object { pip uninstall -y $_ }

Bash:

pip uninstall -y -r <(pip freeze)

Comments