Would you like to learn how to install Apache and enable the use of Python CGIs on a computer running Ubuntu Linux? In this tutorial, we are going to show you how to enable the CGI feature and enable Python scripts to run on the Apache server.
• Ubuntu 18
• Ubuntu 19
• Ubuntu 20
• Apache 2.4.41
• Python 3
All rights reserved. No part of this publication may be reproduced, distributed, or transmitted in any form or by any means without the prior written permission of the publisher.
Equipment list
The following section presents the list of equipment used to create this tutorial.
As an Amazon Associate, I earn from qualifying purchases.
Apache - Related Tutorial:
On this page, we offer quick access to a list of tutorials related to Apache.
Tutorial Ubuntu - Enable Python on Apache
Install the Python package.
Install the Apache server and enable the module named CGID.
Restart the Apache service.
As an example, let's create a Python CGI script.
Use the PIP application to install a Python library named ART.
Access the Apache's CGI directory.
Create a test page using Python.
Here is the file content.
Change the file permission.
Open your browser and enter the IP address of your web server plus /cgi-bin/test.py.
In our example, the following URL was entered in the Browser:
• http://172.31.7.220/cgi-bin/test.py
The Python page should display the following message.

Congratulations! Apache is now able to use Python scripts as CGI.