pip3でKerasを最新版にアップグレードしようとしたところ、以下のようなメッセージが出てpip3のアップデートが必要と言われてしまいました。
terminal
1~~collecting 省略 2Installing collected packages: numpy, six, h5py, keras-applications, keras-preprocessing, pyyaml, scipy, Keras 3Successfully installed Keras-2.1.3 h5py-2.10.0 keras-applications-1.0.8 keras-preprocessing-1.1.0 numpy-1.17.4 pyyaml-5.1.2 scipy-1.3.2 six-1.13.0 4 5You are using pip version 8.1.1, however version 19.3.1 is available. 6You should consider upgrading via the 'pip install --upgrade pip' command. 7```pip3 install -U Keras 8 9そこで、pipのアップデートを行おうとして、 10pip3 install --upgrade pip3 11と実行したところ、 12 13```terminal 14 Could not find a version that satisfies the requirement pip3 (from versions: ) 15No matching distribution found for pip3 16You are using pip version 8.1.1, however version 19.3.1 is available. 17You should consider upgrading via the 'pip install --upgrade pip' command.
と出たので、
表記の通り、pip3 install --upgrade pipを行った後、
pip3 show -U Kerasとすると、
terminal
1Traceback (most recent call last): 2 File "/usr/bin/pip3", line 9, in <module> 3 from pip import main 4ImportError: cannot import name 'main'
となり、pip3が見つかりません。
pip show pip3とすると、
terminal
1DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support 2WARNING: Package(s) not found: pip3
と存在しないのですが、これはpip3を再インストールするしかないのでしょうか?
また、pip3単体をアップグレードしたければ、どうすれば良いでしょうか?
追記:
pip3の再インストールは以下を参考に解決しました。
https://qiita.com/Suzukaze31/items/e6d15ddd9ffcd5e6c246
回答1件
あなたの回答
tips
プレビュー