You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In both cases the module is automatically built with npm's internal version of `node-gyp`,
62
+
and thus your system must meet [node-gyp's requirements](https://github.com/TooTallNate/node-gyp#installation).
63
+
64
+
You can also make your own build of `sqlite3` from the source (see the next section for details).
65
+
66
+
53
67
# BUILDING
54
68
55
-
Unless building via `npm install` you will need `node-gyp` installed globally:
69
+
Unless building via `npm install`(which uses its own `node-gyp`) you will need `node-gyp` installed globally:
56
70
57
71
npm install node-gyp -g
58
72
59
-
The module depends only on libsqlite3. However, by default, an internal/bundled copy of sqlite will be built and statically linked, so an externally installed sqlite3 is not required.
73
+
The sqlite3 module depends only on libsqlite3. However, by default, an internal/bundled copy of sqlite will be built and statically linked, so an externally installed sqlite3 is not required.
60
74
61
75
If you wish to install against an external sqlite then you need to pass the `--sqlite` argument to `node-gyp`, `npm install` or the `configure` wrapper.
62
76
@@ -79,21 +93,13 @@ Note, if building against homebrew-installed sqlite on OS X you can do:
0 commit comments