Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
wget https://www.python.org/ftp/python/3.10.19/Python-3.10.19.tgz
tar -xvf Python-3.10.19.tgz
cd Python-3.10.19
./configure --enable-optimizations --with-ensurepip=install
nproc
make -j 8 
sudo make altinstall
/usr/local/bin/python3.10 --version

Create Virtual Environment for the Web App

The following command line will create the virtual environment for each web app. 

...