[python] python setup.py install 로 설치한 패키지 삭제방법

in python •  6 years ago 
  1. 다시 설치하는데 –record 옵션을 줘서 기록한다.
python setup.py install --record uninstall.txt
  1. 설치한 파일을 하나씩 삭제한다.
cat uninstall.txt | xargs rm -rf
Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!