Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I pip install python3.6?

If I have an older version of python (e.g. python3.4) and pip for this version of python, can I install a newer version of python (e.g. python3.6) by pip? In other words, can I do this?

pip install python3.6
like image 655
norio Avatar asked Jul 15 '18 02:07

norio


1 Answers

No. pip is for installing Python packages, not Python itself.

like image 110
jwodder Avatar answered Sep 22 '22 16:09

jwodder