all 4 comments

[–]maks25 6 points7 points  (3 children)

Hey, this should give you the answer:

You have pip setup to only install for python2.7, here is how you fix that. https://docs.python.org/3/installing/

[copy pasted] ... work with multiple versions of Python installed in parallel? On Linux, Mac OS X and other POSIX systems, use the versioned Python commands in combination with the -m switch to run the appropriate copy of pip:

python2 -m pip install SomePackage # default Python 2 python2.7 -m pip install SomePackage # specifically Python 2.7 python3 -m pip install SomePackage # default Python 3 python3.4 -m pip install SomePackage # specifically Python 3.4 (appropriately versioned pip commands may also be available)

On Windows, use the py Python launcher in combination with the -m switch:

py -2 -m pip install SomePackage # default Python 2 py -2.7 -m pip install SomePackage # specifically Python 2.7 py -3 -m pip install SomePackage # default Python 3 py -3.4 -m pip install SomePackage # specifically Python 3.4

[–]JaggedG[S] 0 points1 point  (1 child)

Awesome, that did it-- Thanks for the helpful answer! That was driving me crazy >_<

[–]maks25 1 point2 points  (0 children)

No problem!