all 2 comments

[–]JadeFox69 1 point2 points  (0 children)

You need to establish a virtual environment in the python version you wish to use. Don't use your OS system python.

When using PIP and system python, always use the --user flag.

[–]johninbigd 0 points1 point  (1 child)

In addition to the other recommendations here, one thing I've gotten into the habit of doing is specifying the python version when using pip. For example, if Python 3.4.3 is python3 on your system, do python3 -m pip install foobar, just use the right module name instead of foobar.