sedhha commented on issue #10433: URL: https://github.com/apache/incubator-superset/issues/10433#issuecomment-717109120
Error happends because flask_manager could not find default db path for sqlite db. To fix this your need to change SQLALCHEMY_DATABASE_URI in caravel config.py Go to your anaconda / python directory. Open %python_path%\Lib\site-packages\caravel\config.py with text editor Find row with SQLALCHEMY_DATABASE_URI connection string and change it according to your operation system / database setup. For windows you should type something like 'sqlite:///C:\\tmp\\caravel.db' More examples on connection strings at sql alchemy docs pages: http://docs.sqlalchemy.org/en/rel_0_9/core/engines.html#database-urls ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
