I have compiled Python 3.4 from the sources on Linux Mint, but for some reason it is not copying pip
to its final compiled folder (after the make install
).
Any ideas?
I have compiled Python 3.4 from the sources on Linux Mint, but for some reason it is not copying pip
to its final compiled folder (after the make install
).
Any ideas?
If you are in Redhat linux (centos, fedora) install following package.
According to PEP 453 -- Explicit bootstraping of pip in Python installation:
After installing from source code, I found that
pip3.4
is put in the destination. (Nopip
norpip3
)Just sorted it out. Here it is how to compile python from the sources.
If you get "Ignoring ensurepip failure: pip 1.5.4 requires SSL/TLS" error:
As you can see pip is copied into target folder, the
--with-ensurepip=install
is important.