Issues installing Python3 and Pip in ubuntu in Docker

Issues installing Python3 and Pip in ubuntu in Docker

text

1) Download the Ubuntu image

docker pull ubuntu

2) View the image

docker images

3) Run the container

docker run -itd --name ubuntu-test ubuntu

4) Enter the container

sudo docker exec -it ubuntu-test /bin/bash

5) Update source

apt-get update

If you don't do this, you may run into the following problems:

Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package Python

Just run it once

6) Install python3

apt-get install python3

7) Install pip3

 apt-get install python3-pip

8) Testing

pip3 install numpy
Collecting numpy
 Downloading numpy-1.20.1-cp38-cp38-manylinux2010_x86_64.whl (15.4 MB)
   |███████████████████████████████████| 15.4 MB 1.9 MB/s
Installing collected packages: numpy
Successfully installed numpy-1.20.1

This is the end of this article about installing Python3 and Pip in Ubuntu in Docker. For more information about installing Python3 and Pip in Docker Ubuntu, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of installing Python 3.7 and pip3 in Ubuntu 16.04 and switching to the default version
  • How to install pip for python and python3 in ubuntu17.4
  • Python3 installation and pip source change and usage tutorial under win10 system
  • Tutorial on upgrading and installing python 3.8 and configuring pip and yum under Linux
  • Pip3 installation error in python3, no solution for SSL found
  • Detailed steps to install pip tool in Python3

<<:  Master the commonly used HTML tags for quoting content in web pages

>>:  How to uninstall MySQL cleanly (tested and effective)

Recommend

How to implement dual-machine master and backup with Nginx+Keepalived

Preface First, let me introduce Keepalived, which...

Dynamic starry sky background implemented with CSS3

Result:Implementation Code html <link href=...

Install and build a server environment of PHP+Apache+MySQL on CentOS

Yum (full name Yellow dog Updater, Modified) is a...

Detailed tutorial on setting password for MySQL free installation version

Method 1: Use the SET PASSWORD command MySQL -u r...

In-depth explanation of the locking mechanism in MySQL InnoDB

Written in front A database is essentially a shar...

Solution to forgetting the password of the pagoda panel in Linux 3.X/4.x/5.x

Enter ssh and enter the following command to rese...

Detailed explanation of mysql.user user table in Mysql

MySQL is a multi-user managed database that can a...

【HTML element】How to embed images

The img element allows us to embed images in HTML...

How to use nginx to configure access to wgcloud

The nginx configuration is as follows: Such as ht...

Node+Express test server performance

Table of contents 1 Test Environment 1.1 Server H...

CSS Sticky Footer Several Implementations

What is "Sticky Footer" The so-called &...

Detailed tutorial on deploying SpringBoot + Vue project to Linux server

Preface Let me share with you how I deployed a Sp...

N ways to align the last row of lists in CSS flex layout to the left (summary)

I would like to quote an article by Zhang Xinxu a...