I have just downloaded the python 3.4 source from the web site and compiled it with ./configure
and make
. I get a fully functional python.
Everyone says that pip comes embedded with python but that is not true if I compile it from source.
On a console I do:
./python -m pip install numpy
from the compilation folder, and I get:
No module named pip
I am on a RHEL7 system and I want to produce a standalone python folder with all the needed modules. My intention is to ship this python folder along with some python software so that I am sure that everything is ok. (Not to rely on others installing all the packages that are needed on a fresh RHEL7 installation)