Building from source is easy
$ wget https://www.python.org/ftp/python/3.5.5/Python-3.5.5.tgz
$ tar -xvf Python-3.5.5.tgz
$ cd Python-3.5.5/
$ ./configure --enable-optimizations
$ sudo make install
$ python3.5 --version
Python 3.5.5
pyvenv-3.5 also becomes available
# pyvenv-3.5 --without-pip python35-test-env
Comments