Setting up Python Environment on Top of Docker Container :

TAMANNA VERMA
Mar 14, 2021

For this , I am having a Docker Container

Run “python3” to check python Environment is there or not , In my case , There is no python3 as command .

Step1 .

To check which package provides python3 :

By Using command :

$ yum whatprovides python3

see in above image python36 provides python3 so we need to install python36 .

Step 2 .

To install python by using command

$ yum install python36

now your Python Environment set up is done .check by using “python3” command

In above Image python3 command is running .

--

--