2

I would like to use pip. Here I go:

$ python -m ensurepip --default-pip
Looking in links: /tmp/tmpd7_yb3oj
Requirement already satisfied: setuptools in /usr/local/lib/python3.8/site-packages (41.2.0)
Requirement already satisfied: pip in /usr/local/lib/python3.8/site-packages (19.2.3)

$ pip --version
-bash: pip: command not found

what did i miss?

anthony sottile
  • 61,815
  • 15
  • 148
  • 207
CY Ngan
  • 21
  • 1

1 Answers1

1

You can also use /usr/local/lib/pip3 install . Generally accessible pip3 is stored at /usr/bin/pip3 and same is with python3 at /usr/bin/python3.

vc2310
  • 131
  • 1
  • 1
  • 7