user7986928
user7986928

Reputation:

How to python pip install for Python 2.7, having using Python 3.6 before on Windows

I need to use the previous version, to rewrite the code in Python 2.7. (this is for building a Kivy app, although Kivy says it now supports Python 3 but it also says * Warning.) In order to do this, I have to import necessary modules : kivy and numpy.

Hope for feedbacks on this, Thanks.

Upvotes: 2

Views: 1523

Answers (1)

jobou
jobou

Reputation: 1853

If you have the 2 versions really installed, you should have a pip2 or pip2.x available in your PATH

Upvotes: 3

Related Questions