๋ค์ ๋ช ๋ น์ด๋ฅผ ์ฌ์ฉํ์ฌ pip, setuptools, wheel์ ์ ์ธํ ๋ชจ๋ ํจํค์ง๋ฅผ ์ ๊ฑฐํ ์ ์์ต๋๋ค:
pip list --format=freeze | grep -v "pip\|setuptools\|wheel" | cut -d "=" -f 1 | xargs -n1 pip uninstall -y
์ด ๋ช ๋ น์ด์ ์๋ ๋ฐฉ์์ ๋ค์๊ณผ ๊ฐ์ต๋๋ค:
pip list --format=freeze
: ์ค์น๋ ๋ชจ๋ ํจํค์ง๋ฅผ "package==version" ํ์์ผ๋ก ๋์ดํฉ๋๋ค.