Я пытаюсь установить Caffe , среду глубокого обучения, в 2.7
версии Python в моем Windows 10 OS
. Caffe
зависимости требуются в Сеть текстовых предложений Connectionist , а поскольку для последнего требуется Python2.7
, я не использую последнюю версию Python
.
Когда я попытался установить модули gflags
и hdf5
, что является одной из зависимостей Caffe, я получил следующие ошибки:
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. 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
ERROR: Could not find a version that satisfies the requirement gflags (from versions: none)
ERROR: No matching distribution found for gflags
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. 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
ERROR: Could not find a version that satisfies the requirement hdf5 (from versions: none)
ERROR: No matching distribution found for hdf5
Как мне все еще установить эти пакеты? Мне нужно запустить Connectionist Text Proposal Network
.