-
Notifications
You must be signed in to change notification settings - Fork 508
db not creating - Similar to Blueprint 404 issue #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Did a bit more research and found that my app is stuck on |
Finally figured this out. Had to download the Win64 version of sqlite3.dll and put it in the DLL directory of my main Python install. What a hassle. |
Hi @mathieum906 Wow! I would have never guessed! Crazy. Is it possible that you have the 32-bit rather than 64-bit version of Python? |
I have 64bit python running. The frustrating thing is that when I installed Alembic, the issue happened again, which I really don't understand... the DLL exists and is in the right place, and yet Alembic can't find it. |
Works when I run it from Anaconda Prompt, but not from PyCharm... I think at some point I need to wipe out my Python installation and install it without Anaconda...? |
Yeah, possibly. You could try typing C:> |
Hello! Similar to the previously-noted Blueprint 404 issue which was corrected with:
register_blueprints()
if __name__ == '__main__': main()
I'm now seeing an issue with the db not creating because setup_db is not being accessed. I moved setup_db here:
register_blueprints()
setup_db()
if __name__ == '__main__': main()
... and still nothing, but at least it prints out the connection string. Any ideas for how to solve this?
The text was updated successfully, but these errors were encountered: