lukas / ml-class

Machine learning lessons and teaching projects designed for engineers
https://www.youtube.com/channel/UCBp3w4DCEC64FZr4k9ROxig
GNU General Public License v2.0
2.34k stars 1.17k forks source link

Tip for installing modules via pip #14

Closed lemonkey closed 4 years ago

lemonkey commented 7 years ago

On macOS El Capitain and later, you might run into permissions issues and the easiest way to fix this is to use the --user option so that the pip module is installed for the current user.

E.g.,:

pip install --user keras

I was having issues until I did the above.