Я создал файл .theanorc в своей домашней папке и добавил следующее, чтобы настроить theano для работы на GPU:
[global]
floatX = float32
device = cuda0
[lib]
cnmem = 1
[cuda]
root = /usr/local/cuda
И я установил Theano с помощью команды pip install Theano
.
Но когда я пытаюсь запустить import theano
, я получаю эту ошибку:
ERROR (theano.gpuarray): pygpu was configured but could not be imported or is too old (version 0.7 or higher required)
.
Можно ли установить pygpu без использования anaconda?