quando corro import theano
in Python, ricevo il seguente messaggio di errore:Importazione Theano: AttributeError: 'modulo' oggetto non ha attributo 'find_graphviz'
Python 2.7.6 (default, Jun 22 2015, 17:58:13)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import theano
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/dist-packages/theano/__init__.py", line 74, in <module>
from theano.printing import pprint, pp
File "/usr/local/lib/python2.7/dist-packages/theano/printing.py", line 35, in <module>
if pd.find_graphviz():
AttributeError: 'module' object has no attribute 'find_graphviz'
Quale potrebbe essere il problema e come risolverlo ?
Uso Theano 0.8.2 su Ubuntu 14.04.4 LTS x64 con Python 2.7.6 x64.
ho provato senza successo:
sudo apt-get install -y graphviz libgraphviz-dev
Grazie, vedo che alcune persone [raccomandano] (https://github.com/Theano/Theano/commit/8d4e0fd0053496ccfed002ea2898a09627443e4e) 'pydot-ng' –
Se hai bisogno di una versione precedente di un pacchetto python come pydot, specificalo durante l'installazione o nel tuo 'requirements.txt', come questo:' pip installa pydot == 1.1.0' – hobs