kuriyamasaikou
@kuriyamasaikou (る ま)

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

初心者 python numpyイントール

初心者です。
numpyをインストールしようとしたのですができません。
pip install numpy
↑実行すると以下の文字がでてきます。

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: numpy in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (1.8.0rc1)

python2.7にインストールされたってことでしょうか?
3.9.0を使用しているのでその場合の対処方法も教えていただきたいです。
お手数おかけしますがよろしくお願いします。

0

1Answer

macOS にプリインストールされた Python 2.7 の pip コマンドが使われたようです。

Homebrew で Python 3.9 をインストールしたのであれば pip3.9 コマンドが使えるはずなので pip3.9 install numpy を実行してみてください。

0Like

Comments

  1. @kuriyamasaikou

    Questioner

    ありがとうございます。無事できました!!感謝です。

Your answer might help someone💌