Hi, the pacman package manager installs Python version 3.12. I however want to install the older Python version (3.8.19) on Msys2. I guess I can install it in Mingw environment too but I want to install in on Msys2 because I need it to use posix libraries i.e os.name should return posix and sys.platform should return cygwin. Any suggestions?
#Install Python 3.8 version in Msys2
1 messages · Page 1 of 1 (latest)
u would need to compile it urself unfortunately
Cygwin still has it https://cygwin.com/packages/summary/python38-src.html
I initially thought of using Cygwin but I also need to use mingw-gcc compiler for the compolation of my project.
Why do you need older python in first place?
I am working on an old project at my Workplace and it has a strict dependency on Python 3.8.19 otherwise the build fails. Getting the project build using newer version of Python is a big challenge.
can't you use docker? just wondering..