zer0uno
zer0uno

Reputation: 8030

Uninstall Python3.3.4 (previously installed via source code)

How can I uninstall Python3.3.4 previously installed via source code? During the installation I made:

./configure --prefix=/opt/python3.3.4
make
sudo make install

I tried sudo make uninstall and make unistall, but nothing happened.

Upvotes: 0

Views: 13062

Answers (2)

holdenweb
holdenweb

Reputation: 37163

I'd go for something unsubtle like

sudo rm -rf /opt/python3.3.4

assuming that's where Python was actually installed. But this looks unnatural, because why would anybody ever want to uninstall Python?

Also, if you have modified your PATH settings and the like you will have to undo those effect manually.

Upvotes: 3

oz123
oz123

Reputation: 28878

You can just delete the directory:

sudo rm -ri /opt/python3.3.4

Upvotes: 1

Related Questions