paulbricman / dual-obsidian-client

A skilled virtual assistant for Obsidian.
https://paulbricman.com/thoughtware/dual
Mozilla Public License 2.0
242 stars 7 forks source link

ModuleNotFoundError: no module named flask #71

Open 0rangeo opened 3 years ago

0rangeo commented 3 years ago

Hey there, when I run the command 'python3 server.py --path [path to skeleton]', it comes up with the error Traceback (most recent call last): File "C:\Users\Owner\iCloudDrive\iCloud~md~obsidian\Orangeo.obsidian\plugins\Dual\skeleton\server.py", line 1, in from flask import Flask ModuleNotFoundError: No module named 'flask'

Anyone know how to fix this?

alannabaker commented 3 years ago

You have to install Flask. It's the first of a bunch of modules you'll probably have to install. This should work: pip install Flask Just repeat for any further modules not found, replacing "Flask" with the name of the module.