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 3 years have passed since last update.

[Python]pipであるはずのバージョンのライブラリがインストールできない(Could not find a version)

Last updated at Posted at 2021-11-24

WindowsでPython環境を構築していたときのこと。
以前構築できていた環境を再現するだけなので問題ないと思っていた、インストールできるはずのライブラリのバージョンが見つからないとエラーがでた。

#例
$ pip install tensorflow==1.14.0
ERROR: Could not find a version that satisfies the requirement 

のような形。

調べた結果単純な間違いがあったため備忘録として以下に実施したことを記す。

実施したこと

pipのアップグレード

$ pip install -U pip

なにはともあれアップグレードはやってみるべし思ったので実施したが変わらずライブラリは...

ERROR: Could not find a version that satisfies the requirement 

と言われてしまう。

さらに調べた結果どうやらインストールしているPythonが怪しいらしい。
というのも確認してみたところインストールしているPythonが32bit版のものをインストールしていた。

ただしくは64bit版をインストールしなければいけないらしい。
無題.png
これはPython.orgでのダウンロードファイル一覧だが、「Windows x86-64 ~~~」を利用しなければいけないところを誤って「Windows x86 ~~~」を利用してPythonをインストールしていたようだ。

pipのアップグレードで解決しない場合は利用しているPythonを一度確認してみると良いかもしれないい。

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?