Open In App

How to Install Python-web2py package on Linux?

Last Updated : 07 Mar, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Web2py is a Python package that helps web developers to create dynamic online content. Although a web developer may construct a form from scratch if necessary, Web2py is meant to assist decrease tiresome web development activities like building web forms from scratch. So, in this article, we’ll use the PIP manager to install the Web2py Python package on a Linux operating system. 

Installing Web2py package on Linux using PIP

Requirements:

  1. Python3
  2. Python3-pip

To install the Web2py package in Linux we have to follow the following steps:

Step 1: Setting up Python environment on our Linux operating system. So we’ll use the apt manager to install Python3.

sudo apt-get install python3

Setting-Python-environment

Step 2: Now we install the PIP manager. Here, PIP manager is a Python package installation program that is used to install and manage Python packages. So to install the PIP manager we will use the following command on the terminal.

sudo apt install python3-pip

Installing-pip-manager

Step 3: Now we use the PIP manager to install the Web2py package. So to install the Web2py package use the following command on the terminal.

sudo pip3 install web2py

Installing-web2py

Verifying the installation of Web2py package on Linux using PIP

After you’ve installed the package, the next step is to check whether the web2py is successfully installed or not. So, we’ll use the following command in the terminal to get the information about the web2py package. 

python3 -m pip show web2py

You will get the following output when the web2py package is successfully installed.

Verifying-the-installation-of-Web2py-package


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads