You could download the source, from, for example, https://www.python.org/ftp/python/3.9.5/
Python-3.9.5.tar.xz is about 18MB
First, backup the save file or save folder.
Load the devx sfs file.
Unzip the tar.xz file in, for example, /tmp/
Code: Select all
cd /tmp/Python-3.9.5/
./configure
make
make altinstall
Or make install
but that will overwrite the Python 2.7 that is already installed.
Code: Select all
# wh python
/usr/bin/dh_python2
/usr/bin/python
/usr/bin/python2
/usr/bin/python2.7
/usr/bin/python2.7-config
/usr/bin/python2-config
/usr/bin/python-config
/usr/bin/x86_64-linux-gnu-python2.7-config
/usr/bin/x86_64-linux-gnu-python-config
/usr/local/bin/python3.9
/usr/local/bin/python3.9-config
/usr/sbin/update-python-modules
# python3.9
Python 3.9.5 (default, May 28 2021, 21:30:41)
[GCC 7.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print
<built-in function print>
>>> print "hello, Puppy!"
File "<stdin>", line 1
print "hello, Puppy!"
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("hello, Puppy!")?
>>>
#
It does not make a symlink python3
to /usr/local/bin/python3.9
You can do that manually.