11-23-2019, 05:50 PM
(This post was last modified: 11-23-2019, 05:52 PM by peterdehondt.)
Mmm it isn't really easy to see what the exact error message is except that the npm sqlite3 package has some problems.
Maybe you can post the error messages in a text file instead of an image.
I had some trouble with the sqlite3 package in combination with node 12.x and fixed it by installing the newest version of sqlite3.
In the ./gekko/package.json file replace the line:
"sqlite3": "^4.0.4",
with:
"sqlite3": "^4.1.0",
and run:
npm remove sqlite3
npm install sqlite3
and see what it does.
Maybe you can post the error messages in a text file instead of an image.
I had some trouble with the sqlite3 package in combination with node 12.x and fixed it by installing the newest version of sqlite3.
In the ./gekko/package.json file replace the line:
"sqlite3": "^4.0.4",
with:
"sqlite3": "^4.1.0",
and run:
npm remove sqlite3
npm install sqlite3
and see what it does.