本文 首发于 🌱 煎茶转载 请注明 来源

安装

python(python3) setup.py install

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