Forums

Install sqlite3 plugins for bottle

sqlite3 plugin for bottle comes loaded in pythonanywhere standard installation? if,not how to install sqlite3 plugin for bottle framework?

Thanks in advance

It's not installed. You can install it yourself like this:

pip install --user bottle-sqlite

Thanks

I am using MySQL and bottle (PythonAnywhere default installation options) and as it turns out, this command also worked for installing bottle-mysql.

pip install --user bottle-mysql

Ah, didn't realize I could use pip this way. Thanks!