LoginSignup
4
3

More than 3 years have passed since last update.

なぜかpip3がpython2.7でのインストールになってしまった時用のメモ

Posted at

python3にpip3を使ってパッケージをインストールしたいのになぜかpip3のpythonのバージョンがpython2.7で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 パッケージ名

というようにpythonのバージョンを指定してinstallしたらできました。
こんな事ができるんですね。。。

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3