python - 使用 python pydot 时出错

标签 python ipython theano pydot

我在使用 theano.printing.pydotprint() 函数时出错

以下几行工作正常,没有任何错误:

>>> from theano import *
>>> import theano.tensor as T
>>> import pydot
>>> import numpy

我运行的时候也是

>>> theano.printing.pydotprint

在 python 解释器中我得到的输出是

<function pydotprint at 0x307ed70>

但问题是当我使用函数执行脚本时出现以下错误

RuntimeError: Failed to import pydot. You must install pydot for `pydotprint` to work.

知道问题出在哪里吗?

P.S:我正在运行这里给出的 python 教程: http://deeplearning.net/software/theano/tutorial/printing_drawing.html 所以函数的调用肯定是正确的。

这是我得到的错误的回溯:

---------------------------------------------------------------------------
RuntimeError                              Traceback (most recent call last)
/usr/lib/python2.7/dist-packages/IPython/utils/py3compat.pyc in execfile(fname, *where)
    173             else:
    174                 filename = fname
--> 175             __builtin__.execfile(filename, *where)

/home/abhishek/Desktop/Theano/test2.py in <module>()
     64 if not os.path.exists('pics'):
     65     os.mkdir('pics')
---> 66 theano.printing.pydotprint(predict,outfile="pics/logreg_pydotprint_predic.png",var_with_name_simple=True)
     67 # before compilation

     68 theano.printing.pydotprint_variables(prediction,outfile="pics/logreg_pydotprint_prediction.png",var_with_name_simple=True)

/usr/local/lib/python2.7/dist-packages/theano/printing.pyc in pydotprint(fct, outfile, compact, format, with_ids, high_contrast, cond_highlight, colorCodes, max_label_size, scan_graphs, var_with_name_simple, print_output_file, assert_nb_all_strings)
    566 
    567     if not pydot_imported:
--> 568         raise RuntimeError("Failed to import pydot. You must install pydot"
    569                             " for `pydotprint` to work.")
    570         return

RuntimeError: Failed to import pydot. You must install pydot for `pydotprint` to work.

最佳答案

尝试按照 solution to this problem 给出的重新安装 pydot , 但这是行不通的。

也就是

pip uninstall pyparsing
pip install -Iv https://pypi.python.org/packages/source/p/pyparsing/pyparsing-1.5.7.tar.gz#md5=9be0fcdcc595199c646ab317c1d9a709
pip install pydot

此安装存在一些问题,即使每次都给出安装成功的消息。

但是

sudo apt-get install python-pydot

这有效。

“因为解决方案不是从某个地方安装 pydot,而是从官方 ubuntu 存储库安装“python-pydot”。” - answer by sadik工作

需要注意的是pydot安装成功后,可以在两个地方查看。
/usr/share/doc/python-pydot

/usr/share/python-support/python-pydot

enter image description here

关于python - 使用 python pydot 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25422826/

相关文章:

python - 遍历字典列表

pdf - IPython/Jupyter 下载为 PDF 样式

python - quit() 在 Python-3.x 和 IPython 中的工作方式不同

python - 我可以在 Keras 中分步训练模型吗?

python - 如何使用多处理并行 Theano 函数?

python - 如何以编程方式运行 ansible 播放,同时仍使用本地文件作为我的播放?

python - 以下两行有什么问题

python - 根据其他 Dataframe 列值更新 Dataframe 列值

python - 从 ipython-notebook 转换为 .py

python - Keras model.summary() 结果 - 了解参数的数量