I have installed a local python3.5 on my Debian 8 system as follows, but there is no pip3 installed with it (i can not find pip in any of the installed python directries like site-packages or in the bin/):
Downloaded the source from python.org
made a ~/.local_python directory
cd Download/Python3.5
./configure --prefix=/home/${USER}/.local_python
make
make install
The Python3.5 seems to be installed properly, i can run the interpreter from inside the .local_python and there is no collision with system default pythons (which was my goal). No i can't find an installed pip3 in it to use to install packages like PyQt5 which support only Python versions <= 3.5. Can anyone help?