3

after installing several packages with the package manager, some others using eggs, some others using pip, for 2 versions of python, with some packages that in the meantime changed name (iPython --> Jupyter).. briefly, my python installation is in a mess state!

How can I reset both system and local python systems to default ubuntu 14.04 ?

Antonello
  • 735
  • 2
    I already asked almost the same question once, but unfortunately did not really get any answer: http://askubuntu.com/q/675142/367990 – Byte Commander Mar 07 '16 at 09:12

1 Answers1

1

As stated here you can remove packages installed by pip with this command:

pip freeze | xargs pip uninstall -y
marco
  • 11