Hi, relative Pythonista (and Python) newbie. Fresh install of Pythonista 3 on my iPad with only StaSh and Plotly added. Trying to start building an app using flask but am getting an error (printed below) whenever I try to load it.

Seems to be related to a module named ‘click’ and also happens when running Python 3.6 (seems to work OK in Python 2.7). Any ideas or collective wisdom?

Thanks in advance,

D

import flask
Traceback (most recent call last):
File "", line 1, in
File "/private/var/mobile/Containers/Shared/AppGroup/51DA162D-7A5C-4721-ADE9-F828C20022AE/Pythonista3/Documents/site-packages-3/flask/init.py", line 21, in
from .app import Flask, Request, Response
File "/private/var/mobile/Containers/Shared/AppGroup/51DA162D-7A5C-4721-ADE9-F828C20022AE/Pythonista3/Documents/site-packages-3/flask/app.py", line 25, in
from . import cli, json
File "/private/var/mobile/Containers/Shared/AppGroup/51DA162D-7A5C-4721-ADE9-F828C20022AE/Pythonista3/Documents/site-packages-3/flask/cli.py", line 25, in
import click
ModuleNotFoundError: No module named 'click'