python - How to use pip with python3.5 after upgrade from 3.4? -


i'm on ubuntu , have python2.7, (it came pre-installed) python3.4, (used before today) , python3.5, upgraded today, installed in parallel. work fine on own.

however, want use pip install packages, , can't figure out how 3.5 installation because pip installs 2.7 , pip3 installs python 3.4 packages.

for instance, have asyncio installed on 3.4, can't import 3.5. when pip3 install aysncio, tells me requirement satisfied.

i'm bit of newbie, did snooping around install directories , couldn't find , i've googled no avail.

i suppose can run pip through python until sorted out. (https://docs.python.org/dev/installing/)

a quick googling seems indicate indeed bug. try , report back:

python3.4 -m pip --version python3.5 -m pip --version 

if report different versions guess you're go. run python3.5 -m pip install package instead of pip3 install package install 3.5 packages.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -