Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
I already know that the pip command might not correspond to the same Python that python runs. But in my case, it seems not to exist at all. I can't even run it as a Python module: $ python -m pip ...
#1: Initial revision
Why does `pip` seem to be missing or broken? Isn't it part of the standard library?
I [already know](https://software.codidact.com/posts/291768) that the `pip` command might not correspond to the same Python that `python` runs. But in my case, it seems not to exist at all. I can't even run it as a Python module: ```python $ python -m pip /usr/bin/python: No module named pip ``` What gives? I thought each copy of Python is supposed to have its own Pip?