You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.
Running the Flask app will get you the below error Traceback (most recent call last): File "webarya.py", line 5, in <module> import arya.arya ImportError: No module named arya
to fix we need to import arya not import arya.arya
The text was updated successfully, but these errors were encountered:
Yes there is a (somewhat) known issue related to path here. There is also a console script that arya implements called arya as well. This can create a namespace colision depending on your path. Are you running in a venv or via docker?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Running the Flask app will get you the below error
Traceback (most recent call last): File "webarya.py", line 5, in <module> import arya.arya ImportError: No module named arya
to fix we need to
import arya
notimport arya.arya
The text was updated successfully, but these errors were encountered: