Published on

Permission denied python3でnumpyをインストールするときに起きたエラーの対象方法

Authors
  • avatar
    Name
    ssu
    Twitter
python3 -m pip install numpy

とpython3でnumpyをinstallしようとしたときに以下のエラーが出たので対処法を紹介します。

Installing collected packages: numpy ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/Library/Python/3.8' Consider using the `--user` option or check the permissions.

エラーを見ると

ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/Library/Python/3.8'

環境が原因でインストールできなく。権限がないよ と言われています。

この対処方法は権限のあるユーザを指定するやり方があります。 今回はシステムにそのまま入れたかったので,sudoを使いました。

sudo python3 -m pip install numpy

これで終わりで、無事インストールできます。