Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

How to get pip3 without sudo privileges

I need to install pip3, but cannot do it without sudo privileges which I don't have.
I have tried wget //bootstrap.pypa.io/get-pip.py but that gets me the other version of pip.
by

1 Answer

Bharatv4tg1
If you need pip3 to install packages for python3, you can use pip to install packages for specific versions of python. You could try:
python3.6 get-pip.py

and then:
python3.6 -m pip install <package>
replacing for your version of python and the package.

Login / Signup to Answer the Question.