I want to use caffe.draw
to draw the caffe net by anaconda python on mac. But I got the error like this:
File \"python/draw_net.py\", line 45, in &l
If you are still getting the error, I suppose you installed pydot and graphviz using pip.
Please use :
sudo apt-get install graphviz
pip install pydot
If this gives you permission issues please use:
sudo pip install pydot
This will install the complete graphviz from Ubuntu.
After this the draw_net.py
runs correctly.