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
  • 779
  • 1
  • 13
  • 26

1 Answers1

1

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

pip freeze | xargs pip uninstall -y
marco
  • 11