Install Python with docker in linux environment

didn"t the linux environment install Python, using docker install Python for the system? Do I have to use docker"s container command to run Python to use Python? I don"t understand docker yet. I hope you can give me some advice.

Mar.06,2021

docker can be understood as a simple virtual machine. All operations in the docker container are independent. When using a python image, be sure to start the container


Image is a template, and the container is an instance, just like the relationship between class and instance

Menu