0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

pythonとpachagesのversionのずれでエラーが出ていた

Posted at

まず、pythonのversionを調べる。
iterm2で

python3

でインタラクティブ入って、

import sys
sys.path

の結果に、
/opt/homebrew/lib/python3.10/site-packages
があるから、python3.10を使っていることがわかる。

sys.executableはなんだろう
出力は/opt/homebrew/opt/python@3.10/bin/python3.10

次にパッケージのversionを調べる。

pip show numpy

とかで見ると、出力のLocationが、
Location: /opt/homebrew/lib/python3.9/site-packages
だから、python3.9と紐づいてる?ことがわかる。

このpythonのversionのずれがエラーの原因かも。
そこで、

python3.10 -m pip install --upgrade pip

すると、

pip show numpy

の出力のLocationが、
Location: /opt/homebrew/lib/python3.10/site-packages
になる。
そんで,

pip list

すると数が減っているので、必要なものをinstallする必要がある。

pip install PyPDF2

とかすると、showのLocationが、
Location: /opt/homebrew/lib/python3.10/site-packages
になっていて、python3.10に紐づく?パッケージがinstallされていることがわかる。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?