Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No pip version for python3.7?

Tags:

pip

python-3.7

I have installed python3.7 on my mac and Ubuntu 18.04. but there does not seem to be a new pip to install modules for python 3.7.

Whats up? When will I be able to install a 3.7 version of pip?

like image 277
professor.jenkins Avatar asked Jul 19 '18 20:07

professor.jenkins


People also ask

Does Python 3.7 have pip?

The current version of pip works on: Windows, Linux and MacOS. CPython 3.7, 3.8, 3.9, 3.10 and latest PyPy3.

Why does my Python not have pip?

A “pip: command not found” error occurs when you fail to properly install the package installer for Python (pip) needed to run Python on your computer. To fix it, you will either need to re-install Python and check the box to add Python to your PATH or install pip on your command line.


1 Answers

yup..

  • You can download get-pip from https://bootstrap.pypa.io/get-pip.py
  • After download file run as,
  • ashutosh@ashutosh:~/Downloads$ sudo python3.7 get-pip.py
  • it will install current pip on your system
like image 124
Ashutosh Singh Avatar answered Oct 19 '22 21:10

Ashutosh Singh