Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
948 views
in Technique[技术] by (71.8m points)

pip - using pip3 with 3.7?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...