Your pip
is a soft link to the same executable file path with pip3
. you can use the commands below to check where your pip
and pip3
real paths are:
$ ls -l `which pip` $ ls -l `which pip3`
You may also use the commands below to know more details:
$ pip show pip $ pip3 show pip
When we install different versions of python, we may create such soft links to
- set default pip to some version.
- make different links for different versions.
It is the same situation with python
, python2
, python3
More information below if you’re interested in how it happens in different cases:
Related Posts:
- Python can’t find module NLTK
- How to install pip for Python 3 on Mac OS X?
- Pip freeze vs. pip list
- Could not find a version that satisfies the requirement tensorflow
- Could not find a version that satisfies the requirement tensorflow
- How to uninstall Python 2.7 on a Mac OS X 10.6.4?
- Updating Python on Mac
- matplotlib: RuntimeError: Python is not installed as a framework
- boto3 python 2.7 ImportError: No module named boto3 USER_BASE USER_SITE site packages doesn’t exist
- How to install pip with Python 3?
- bash: pip: command not found
- bash: pip: command not found
- How to uninstall a package installed with pip install –user
- How to uninstall pip on OSX?
- Python Variable Declaration
- ImportError: No module named pip
- ImportError: No module named pip
- How do I install pip on macOS or OS X?
- working of \n in python [duplicate]
- How do I install pip on macOS or OS X?
- How can I run python in terminal on a mac?
- WinError 2 The system cannot find the file specified (Python)
- How to install python3 version of package via pip on Ubuntu?
- Could not install packages due to an EnvironmentError:
- Local variable referenced before assignment?
- How do I upgrade to Python 3.6 with conda?
- Can’t fix “zipimport.ZipImportError: can’t decompress data; zlib not available” when I type in “python3.6 get-pip.py”
- import opencv vs import cv2
- How to pip or easy_install tkinter on Windows
- How to change default Python version?
- ImportError: No module named sklearn (Python)
- bash: pip: command not found
- How to change default Python version?
- TypeError: write() argument must be str, not bytes (Python 3 vs Python 2 )
- How to install pip3 on Windows?
- How do I install the yaml package for Python?
- What version of Python is on my Mac?
- ModuleNotFoundError: No module named ‘matplotlib’
- Change figure size and figure format in matplotlib
- How can I install Python’s pip3 on my Mac?
- What is the purpose of “pip install –user …”?
- ‘pip3’ is not recognized as an internal or external command, operable program or batch file
- Checking whether pip is installed?
- How can I install Python’s pip3 on my Mac?
- How can I install a previous version of Python 3 in macOS using homebrew?
- ValueError: unsupported pickle protocol: 3, python2 pickle can not load the file dumped by python 3 pickle?
- ValueError: unsupported pickle protocol: 3, python2 pickle can not load the file dumped by python 3 pickle?
- python mpl_toolkits installation issue
- Type error Unhashable type:set
- Pipenv: Command Not Found
- Pip – Fatal error in launcher: Unable to create process using ‘”‘
- ImportError: No module named ‘yaml’
- TypeError: ‘_io.TextIOWrapper’ object is not subscriptable
- Why is parenthesis in print voluntary in Python 2.7?
- How to read the last line of a file in Python?
- Django Rest Framework — no module named rest_framework
- Python: source code string cannot contain null bytes
- pip throws TypeError: parse() got an unexpected keyword argument ‘transport_encoding’ when trying to install new packages
- Could not install packages due to an EnvironmentError: [Errno 13]
- What is the meaning of “int(a[::-1])” in Python?
- Kill a python process
- dump() missing 1 required positional argument: ‘fp’ in python json
- Tkinter error: Couldn’t recognize data in image file
- How to install Openpyxl with pip
- Install py2exe for python 2.7 over pip: this package requires Python 3.3 or later
- Does python have header files like C/C++?
- How to install NumPy for Python 3.6
- Pip install on Mac OS gets error: command ‘/usr/bin/clang’ failed with exit code 1
- How to install PyQt4 on Windows using pip?
- How do I install pip on macOS or OS X?
- Homebrew brew doctor warning about /Library/Frameworks/Python.framework, even with brew’s Python installed
- How to install PyQt4 on Windows using pip?
- SyntaxError: unexpected EOF while parsing
- How to use filter, map, and reduce in Python 3
- Use Gif Logo For Loading Screen In Kivy
- Praw & Discord.py: The bot keep sending the same meme. I want the bot to send different meme whenever it is asked
- How can I make a time delay in Python? [duplicate]
- Python – TypeError: ‘int’ object is not iterable
- TypeError: ‘int’ object is not subscriptable
- Understanding the main method of python [duplicate]
- TypeError: only integer scalar arrays can be converted to a scalar index with 1D numpy indices array
- How do I update\upgrade pip itself from inside my virtual environment?
- How to open a file using the open with statement
- TypeError: only integer scalar arrays can be converted to a scalar index with 1D numpy indices array
- How do I update\upgrade pip itself from inside my virtual environment?
- Microsoft Visual C++ 14.0 is required (Unable to find vcvarsall.bat)
- What is the difference between rw+ and r+
- ‘pip’ is not recognized as an internal or external command
- How to update/upgrade a package using pip?
- Convert bytes to a string
- How do I update\upgrade pip itself from inside my virtual environment?
- How can I represent an ‘Enum’ in Python?
- Python – TypeError: ‘int’ object is not iterable
- Import Error: No module named numpy
- How to update/upgrade a package using pip?
- Python3 – ModuleNotFoundError: No module named ‘numpy’
- Relative imports – ModuleNotFoundError: No module named x
- Python: ‘ModuleNotFoundError’ when trying to import module from imported package
- Relative imports – ModuleNotFoundError: No module named x
- TypeError: a bytes-like object is required, not ‘str’ when writing to a file in Python3