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
Hi @olefson
The "No native build was found" error related to node-gyp and LMDB on a Windows system, follow these steps: First, ensure that you have the necessary build tools installed. You can install them globally using npm install -g windows-build-tools, or manually install Python (either Python 2.7 or 3.x) and Visual Studio Build Tools with the "Desktop development with C++" workload. After installing these tools, rebuild the native node-gyp modules by running npm rebuild or npm rebuild --build-from-source. If issues persist, clear the node_modules directory and reinstall packages by running rm -rf node_modules && npm install. Additionally, ensure you are using a compatible version of Node.js (check with node -v), and update it if necessary. You may also need to check LMDB compatibility and install a compatible version using npm install lmdb@compatible_version. By following these steps, the native build issue should be resolved.
The text was updated successfully, but these errors were encountered: