ERROR: Please install sqlite3 package manually
See original GitHub issueafter installing sequelize-cli and express-generator
npm install -g sequelize-cli express-generator
I create my express app with:
express --view=pug todos-manager
Then I installed sequelize and sqlite3
cd todos-manager && npm install
npm install --save sequelize
npm install --save sqlite3
I initialized sequelize
sequelize init
and corrected config/config.json with data to connect to my sqlite db
Then created a model and migtation
sequelize model:create --name Todo --attributes title:string,description:string
Running this
sequelize db:migrate
I got the error:
Sequelize CLI [Node: 10.16.0, CLI: 5.5.0, ORM: 5.8.12]
Loaded configuration file "config\config.json".
Using environment "development".
ERROR: Please install sqlite3 package manually
I’ve tried to rebuild, with no success.
Any ideas?
Issue Analytics
- State:
- Created 4 years ago
- Comments:21 (2 by maintainers)
Top Results From Across the Web
Error: Please install sqlite3 package manually - Treehouse
Error : Please install sqlite3 package manually. In case someone gets this error. After following the instructions twice and getting stuck.
Read more >ERROR: "Please install sqlite3 package manually" when I ...
First install sequelize-cli globally. sudo npm install -g sequelize-cli. Then use the following ...
Read more >Error: please install sqlite3 package manually" node js REACT
https://imgur.com/7mee0AY I try, npm uninstall sqlite3 and install sqlite3, npm rebuild, delete folder node_modules and npm i + delete package-lock.json, ...
Read more >Freshworks SDK (fdk) not getting installed throwing sqlite3 ...
Facing issues while installing the Freshdesk SDK (fdk), it asks to install sqlite3 package manually, upon installing it globally, ...
Read more >bkimminich/juice-shop - Gitter
info: All dependencies in ./package.json are satisfied (OK) (node:24751) UnhandledPromiseRejectionWarning: Error: Please install sqlite3 package manually
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

i had same issue,
npm rebuildhelped metry
npm i sqlite3 -D && rm -rf node_modules && npm i && npm rebuildthese are all steps which come in my mind 😃