pip: command not found
What is pip? pip is the standard package manager for Python.
It allows you to install and manage additional packages that are not part of the Python standard library.
pip: command not found
Python pip: command not found Solution
Python pip: command not found Solution
On Career Karma, learn about the Python pip: command not found error, why the error is raised, and how to solve the error.
careerkarma.com
Ubuntu 18.04 ships with Python 3, as the default Python installation. Complete the following steps to install pip (pip3) for Python 3:
1. Start by updating the package list using the following command:
sudo apt update
2. Use the following command to install pip for Python 3:
sudo apt install python3-pip
The command above will also install all the dependencies required for building Python modules.
3. Once the installation is complete, verify the installation by checking the pip version:
pip3 --version
버전 확인하니 아래와 같이 출력됨.
pip 20.0.2 from /usr/lib/python3/dist-packages/pip (python 3.8)
pip 설치하고 나서 whatap-python 패키지 설치 가능해짐
sudo pip install whatap-python
Successfully built whatap-python
Installing collected packages: whatap-python
Successfully installed whatap-python-1.1.4