Homebrew pip install jupyter error: ImportError: entry point ('console_scripts', 'pip2') not found

The ultimate goal is to get a jupyter laptop running on Mac OSX. Due to some conflicts with mac-python, I went the homebrew route:

brew install python

After homebrew finishes installing python (and pip2)

export PATH=/usr/local/bin:/usr/local/sbin:$PATH

appended to ~ / .zshrc

source ~/.zshrc

Now running pip or pip2 gives the following error:

pip2 install jupyter

Traceback (most recent call last):
  File "/usr/local/bin/pip2", line 11, in <module>
    load_entry_point('pip==9.0.1', 'console_scripts', 'pip2')()
  File "/Users/user1/Library/Python/2.7/lib/python/site-packages/pkg_resources/__init__.py", line 564, in load_entry_point
    return get_distribution(dist).load_entry_point(group, name)
  File "/Users/user1/Library/Python/2.7/lib/python/site-packages/pkg_resources/__init__.py", line 2661, in load_entry_point
    raise ImportError("Entry point %r not found" % ((group, name),))
ImportError: Entry point ('console_scripts', 'pip2') not found

      

+2


source to share





All Articles