Howdy, Stranger!
Categories
- 3K All Categories
- 152 Research & Reading
- 692 The Zettelkasten Method
- 7 Knowledge Work
- 100 Writing
- 464 Software & Gadgets
- 154 Workflows
- 730 The Archive
- 15 Plug-In Showcase
- 88 Resolved Issues
- 225 Projects Logs and Journals
- 83 Project: Zettelkasten.de
- 53 Critique my Zettel
- 171 Random
- 373 Introduce Yourselves!
Comments
@waterglass22 Are your notes named using the standard naming convention? ie. "201906202320 Note Name Here.md"
Hi, Yes, I created a new archive with just 3 notes following the standard naming convention with slightly different error message below:
Traceback (most recent call last):
File "/Users/tdiaz/envs/zkviz/bin/zkviz", line 11, in
load_entry_point('zkviz==1.3.0', 'console_scripts', 'zkviz')()
File "/Users/tdiaz/envs/zkviz/lib/python3.7/site-packages/zkviz/zkviz.py", line 197, in main
graph.render(args.output)
File "/Users/tdiaz/envs/zkviz/lib/python3.7/site-packages/zkviz/plotly.py", line 158, in render
fig = self.build_plotly_figure()
File "/Users/tdiaz/envs/zkviz/lib/python3.7/site-packages/zkviz/plotly.py", line 98, in build_plotly_figure
text = "
".join([node, self.graph.node[node].get("title", "")])
AttributeError: 'Graph' object has no attribute 'node'
Thanks
Tom
@waterglass22 It's a typo in the script. You have to edit line 98 in
/Users/tdiaz/envs/zkviz/lib/python3.7/site-packages/zkviz/plotly.pywhere it saysself.graph.nodeit should beself.graph.nodeswith an SThat worked! Thank you.