python setup.py 安装和卸载

安装

1
python(python3) setup.py install

卸载

1
2
3
4
5
python(python3) setup.py install --record files.txt
xargs rm -rf < files.txt

# windows powershell
Get-Content files.txt | ForEach-Object {Remove-Item $_ -Recurse -Force}

References


python setup.py 安装和卸载
https://www.frytea.com/post/20240623100733.html
作者
Tianlun Song
发布于
2024年6月23日
更新于
2024年6月23日
许可协议