[Answered ]-Error from installing Django using pip on mac

2👍

Have you activated your virtual environment?

source env/bin/activate

It looks like you are running the default pip and you don’t have permission to install into the directory. If you run sudo pip install django it should work.

Leave a comment