Docker - Install pip in a Trusty docker container

For some reason (maybe the source), I could not install python-pip in the full Trusty docker container I created (in the previous blog post) using apt-get. So, easy_install is for the rescue :


root@93b3f27d3129:# apt-get install -y python-setuptools
root@93b3f27d3129:# easy_install pip


Comments