Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

MAY 13, 2018 • READ IN 4 MINUTES | LAST UPDATED 

FEBRUARY 20, 2019

How to Install Pip on Ubuntu 18.04


THIS TUTORIAL IS ALSO AVAILABLE FOR RELATED TUTORIALS

Centos 7
How to deploy Odoo 12 on Ubuntu 18.04
Debian 9
How to deploy Odoo 11 on Ubuntu 18.04

How to install Odoo 11 on Ubuntu 16.04

How to Install Flask on Ubuntu 18.04

Install Odoo 12 on CentOS 7

How to Install Django on Ubuntu 18.04

How to Install PyCharm on Ubuntu 18.04

How to Create Python Virtual Environm…

How to install OpenCV on Ubuntu 18.04

How to install Pip on Debian 9


report this ad Pip is a package management system that simpli es installation and management of
software packages written in Python such as those found in the Python Package Index
(PyPI). Pip is not installed by default on Ubuntu 18.04, but the installation is pretty
CONTENTS
straightforward.
Prerequisites

Installing pip for Python 3


In this tutorial, we will show you how to install Python Pip on Ubuntu 18.04 using the apt
package manager. We will also walk you through the basics of installing and managing
Installing pip for Python 2
Python packages with pip.
How to Use Pip
Installing Packages with Pip
Installing Packages with Pip using the
Requirements Files
Prerequisites
Listing Installed Packages
report this ad
Upgrade a Package With Pip Before continuing with this tutorial, make sure you are logged in as a user with sudo
Uninstalling Packages With Pip privileges.
Conclusion

SHARE
Installing pip for Python 3

Ubuntu 18.04 ships with Python 3, as the default Python installation. Complete the
following steps to install pip ( pip3 ) for Python 3:

01. Start by updating the package list using the following command:

$ sudo apt update

02. Use the following command to install pip for Python 3:

$ sudo apt install python3-pip

The command above will also install all the dependencies required for building Python
modules.

03. Once the installation is complete, verify the installation by checking the pip version:

$ pip3 --version

The version number may vary, but it will look something like this:

Output
pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6)

Installing pip for Python 2

Python 2 is not installed by default in Ubuntu 18.04. To install Python 2 and pip for Python
2, complete the following steps:

01. Update the package index by running the following command:

$ sudo apt update

02. Install pip for Python 2 with:

$ sudo apt install python-pip

The command above will install Python2, Pip and all the dependencies required for
building Python modules.

03. Verify the installation by printing the pip version number:

$ pip --version

The version number may vary, but it will look something like this:

Output
pip 9.0.1 from /usr/lib/python2.7/dist-packages (python 2.7)

How to Use Pip

When installing python modules globally it is highly recommended to install distribution


provided python modules using the apt package manager because they are tested to
work properly on Ubuntu systems.

You should install Python modules globally using pip only if there is no package available
through the package manager.

Replay

In most cases, you should use pip within a virtual environment only. Python Virtual
Environments allows you to install Python modules in an isolated location for a speci c
project, rather than being installed globally. This way you do not have to worry about
affecting other Python projects.

In this section, we show you a few useful basic pip commands. With pip, we can install
packages from PyPI, version control, local projects, and from distribution les but in most
cases, you will install packages from PyPI.

To view the list of all pip commands and options, type:

$ pip3 --help

You can get more information about a speci c command using pip <command> --help .
For example to get more information about the install command, type:

$ pip install --help

Installing Packages with Pip

Let’s say you want to install a package called scrapy which is used for scraping and
extracting data from websites.

To install the latest version of the package you need to run the following command:

$ pip3 install scrapy

To install a speci c version of the package you would issue the following command:

$ pip3 install scrapy==1.5

Replace pip3 with pip if using Python 2.

Installing Packages with Pip using the Requirements Files

requirement.txt is a text le that contains a list of pip packages with their versions
which are required to run a speci c Python project.

Use the following command to install a list of requirements speci ed in a le:

$ pip3 install -r requirements.txt

Listing Installed Packages

To list all the installed pip packages use the command below:

$ pip3 list

Upgrade a Package With Pip

To upgrade an already installed package to the latest version use the following command:

$ pip3 install --upgrade package_name

Uninstalling Packages With Pip

To uninstall a package run:

$ pip3 uninstall package_name

Conclusion

In this tutorial, you have learned how to install pip on your Ubuntu machine and how to
manage Python packages using pip. For more information about pip, visit the pip user
guide page.

If you have any questions or feedback, feel free to comment below.

python pip ubuntu

report this ad

If you like our content, please consider buying us a coffee.


Thank you for your support!

Buy me a coffee

Sign up to our newsletter and get our latest tutorials and news
straight to your mailbox.

Your email... Subscribe

We’ll never share your email address or spam you.

OCT 9, 2018 MAY 3, 2018 DEC 22, 2017

How to deploy Odoo 12 on Ubuntu How to deploy Odoo 11 on Ubuntu How to install Odoo 11 on Ubuntu
18.04 18.04 16.04

Show comments (2)

© 2019 Linuxize.com Privacy Policy Contact

You might also like