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 Oct 7, 2023. It is now read-only.
Hi. I don't know how to use GitHub, and I don't know where to write. I decided to write here. While installing through Docker, I encountered two problems.
File "/app/base/forms.py", line 8, in
From wtforms import TextField, PasswordField
ImportError: cannot import name 'TextField'
File "/app/base/models.py", line 8, in
from sqlalchemy import Binary, Column, Integer, String
ImportError: cannot import name 'Binary'.
Changing the following parameters in the code helped:
'TextField' -> 'TextAreaField'.
''Binary'' -> 'BINARY'
Thanks
The text was updated successfully, but these errors were encountered:
Hi. I don't know how to use GitHub, and I don't know where to write. I decided to write here. While installing through Docker, I encountered two problems.
File "/app/base/forms.py", line 8, in
From wtforms import TextField, PasswordField
ImportError: cannot import name 'TextField'
File "/app/base/models.py", line 8, in
from sqlalchemy import Binary, Column, Integer, String
ImportError: cannot import name 'Binary'.
Changing the following parameters in the code helped:
'TextField' -> 'TextAreaField'.
''Binary'' -> 'BINARY'
Thanks
The text was updated successfully, but these errors were encountered: