I want to install a package on python3 using pip3, but for some reason I get an error that the python version of pip3 is python2.7 and that package cannot be installed on python3.
~: python3 -V
Python 3.7.4
~/program/scrape: pip3 -V
pip 20.0.2 from /Users/eijikudo/Library/Python/2.7/lib/python/site-packages/pip (python 2.7)
python3.7 -m pip install package name
I specified the version of python and installed it. You can do something like this. .. ..
Recommended Posts