Versions Compared

Key

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

...

Restrictions on RPM Packages

Code Block
journalctl -u voila.service

Updates to OS

Code Block
sudo apt update
sudo apt upgrade
sudo apt install build-essential libssl-dev libffi-dev 

Download

...

, Build, and Test

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. 

Code Block
cd~
/usr/local/bin/python3.10 -m venv venv_web_app

Troubleshooting

How to run the web apps on a locally

...