Keep getting some permission denied error

You are probably doing python setup.py install something or pip install something and its trying to install to the global Python package location, for which your user does not have access. You need to use virtual environments.

Leave a Comment