3

I'm rebuilding a system after a crash: Ubuntu 16.04LTS.

$pip3 with any cmnd-line option fails as follows:

Traceback (most recent call last):
  File "/usr/local/bin/pip3", line 11, in <module>
    sys.exit(main())
TypeError: 'module' object is not callable

FWIW, my end goal is to get iPython upgraded to using Python 3.6+, then to re-install Jupyter.

Suggestions?

Smack Alpha
  • 1,828
  • 1
  • 17
  • 37
Brian Piercy
  • 631
  • 1
  • 7
  • 22

1 Answers1

4

I had the same problem and this answer fixed it for me:

python3 -m pip uninstall pip
Bob Vork
  • 2,927
  • 28
  • 32