Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install an older version of python

Tags:

python

How can I install python 3.4 (Windows version) when a newer version (3.5.1) is now available. My app specifically is looking for 3.4. I can't seem to find a download for any of the older versions.

like image 411
user225725 Avatar asked Apr 23 '16 11:04

user225725


People also ask

Can I install old version of Python?

To download older version of python : hover over downloads button and click on View the full list of downloads. scroll down a bit and click on the version you want. then scroll to the bottom (the files section)

How do I install an older version of a Python Package?

How do I Install a Specific Version of a Python Package? To install a specific version of a Python package you can use pip: pip install YourPackage==YourVersion . For example, if you want to install an older version of Pandas you can do as follows: pip install pandas==1.1. 3 .

How do I install a different version of Python?

Install that version using "make install". Install all other versions using "make altinstall". For example, if you want to install Python 2.5, 2.6 and 3.0 with 2.6 being the primary version, you would execute "make install" in your 2.6 build directory and "make altinstall" in the others.


1 Answers

To download older version of python :

  1. go to https://www.python.org
  2. hover over downloads button and click on View the full list of downloads.
  3. scroll down a bit and click on the version you want (preview)
  4. then scroll to the bottom (the files section)
  5. if you are a 64-bit user then click on Windows x86-64 executable installer
  6. if you are a 32-bit user then click on Windows x86 executable installer (preview)

after downloading it, you can install it.

like image 185
Skidee Avatar answered Sep 18 '22 20:09

Skidee