Я пытаюсь установить TensorFlow с помощью pipenv, однако установка всегда заканчивается неудачей.
Я использую командную строку в Windows 7.
Я пробовал приведенный ниже файл Pipfile, а также вручную определял тензор потока = "== 1.11.0", но, похоже, ничего не работает.
Это мой текущий файл Pipfile:
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
[packages]
requests = "*"
pandas = "*"
scipy = "*"
seaborn = "*"
scikit-learn = "*"
tensorflow = "*"
[requires]
python_version = "3.6"
Я получаю ошибку (после запуска pipenv install
):
Installing dependencies from Pipfile.lock (a4b797)...
An error occurred while installing tensorflow==1.12.0 --hash=.....
.....! Will try again.
.....
[pipenv.exceptions.InstallError]: ['Could not find a version that satisfies the requirement tensorflow==1.12.0 .....']
ERROR: ERROR: Package installation failed...
Если кто-нибудь может мне помочь, это было бы здорово!