I have made a programming model in python 2.7 version and want to run it on Centos 6.8 version by using it in a Docker File.
At present there is two version of python in my Docker File:
- 2.6.6 (Default cannot remove )
- 2.7.8
But when I start to install the libraries by using pip it gets installed in the python 2.6 version
I want to make a Docker file such that a person doesn't need to manually go into the container and create a system link to use it.
It should be all included in the Docker file itself. Is there anyone who can give me a clear idea how this is possible in Centos 6 only.