Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

this should be dead simple but ive googled for ages and can't find anything on this. maybe too generic of a search.

I have several vms. centos and ubuntu.

they both always come with python3.6 which has always been fine with me. but i gotta do some devwork on an app written in 3.7. So i installed that in ubuntu using the apt-get install python3.7 which went fine but it seems the modules I install with pip3 work on in python3.6...

pip3 install future

import future

works in 3.6 but not 3.7.

What I do? -thx

question from:https://stackoverflow.com/questions/65841125/using-pip3-with-3-7

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

which pip3 points to /usr/bin/pip3 hence pip3 install only installs it for python3.6.
For python3.7 you can use /path/to/python3.7 -m pip install future to install it.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...