我發現這個問題: http://grokbase.com/t/scipy.org/ipython-dev/12bygp3793/try-jsplugins-d3graph。 在上述方案中,建議從編譯IPython中: https://github.com/ellisonbg/ipython/tree/jsonhandlersiPython中的d3插件安裝問題
我這樣做,並在這裏遵循的方向: https://github.com/ipython/jsplugins
總結: 我跟着指示,從 和jsplugins> d3graph> README.md
d3graph.py:複製到.ipython \擴展
d3graph.js和d3graph.css:複製到 .ipython \ profile_default \靜\ jsplugins \ d3graph
(注:我在Ubuntu/Linux的12.10 IPython中,0.14.dev.egg-INFO)
運行IPython的筆記本--pylab直列
用d3.ipynb打開可視化圖形
每個單元格都被執行,但圖形沒有顯示。
但我可以繪製圖表:
pos=nx.spring_layout(G,iterations=100)
plt.subplot(221)
nx.draw(G,pos,font_size=8)