Manjaro now comes with the newest version of Python (3.8). However, I need an older version of Python (3.7) for my current projects. Is there a way to install the older version and use something like python37
or python38
when starting the program so that I can switch between the two versions?
Asked
Active
Viewed 1.1k times
5
-
1Does this answer your question? ["Proper way" to manage multiple versions of Python on archlinux](https://stackoverflow.com/questions/7297094/proper-way-to-manage-multiple-versions-of-python-on-archlinux) – Maurice Meyer Apr 02 '20 at 10:20
-
1Have a look at [pyenv](https://github.com/pyenv/pyenv) – Maurice Meyer Apr 02 '20 at 10:22
-
I will try it, thank you – Apr 02 '20 at 10:40
1 Answers
3
You can try installing a specific version using AUR
...
sudo pacman -S yay
yay -S python37

Heehaaw
- 2,677
- 17
- 27