DT Ngo
DT Ngo

Reputation: 31

jupyter notebook (dyld: Library not loaded)

Pardon me for my stupidity. I tried to run jupyter notebook on Mac terminal after:

then I got the following error

dyld: Library not loaded: /usr/local/Cellar/python3/3.6.0/Frameworks/Python.framework/Versions/3.6/Python Referenced from: /usr/local/opt/python3/bin/python3.6 Reason: imagenot found
Abort trap: 6

What I am trying to do is just to upgrade python and packages used by Jupyter Notebook. Could someone help advise what went wrong and how I can fix this?

Upvotes: 0

Views: 337

Answers (1)

Tharun K
Tharun K

Reputation: 1180

Try

brew update
brew upgrade
brew cleanup
brew upgrade python3

Upvotes: 1

Related Questions