Install Memgraph on Windows with WSL
This article briefly outlines the basic steps necessary to install and run Memgraph on Windows with the Windows Subsystem for Linux.
Prerequisites
Before you proceed with the installation guide make sure that you have:
- Downloaded the latest Memgraph Debian Package which can be found here.
- Windows Subsystem for Linux installed. You can find instructions on how to install it here.
- The Ubuntu app or Debian app from the Microsoft Store.
Installation guide
After downloading Memgraph as a Debian package and starting your Debian/Ubuntu application, install Memgraph by running the following command in the Debian terminal:
sudo dpkg -i /mnt/<drive>/Users/<windows username>/Downloads/memgraph_<version>.deb
Start the Memgraph server by issuing the following command:
sudo runuser -l memgraph -c '/usr/lib/memgraph/memgraph'
If Memgraph has been installed correctly, you will see something like this:
You are running Memgraph vX.X.X-community
If you want to start Memgraph with different configuration settings, check out the section below. At this point, Memgraph is ready for you to submit queries.
Potential installation error You could get errors while installing the package with the above commands if you don't have all of Memgraph's dependencies installed. The issues mostly look like the following:
dpkg: error processing package memgraph (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
memgraph
To install missing dependencies and finish the installation of the Memgraph package, just issue the following command:
sudo apt-get install -f
The above command will install all missing dependencies and will finish configuring the Memgraph package.
Configuration
The Memgraph configuration is available in /etc/memgraph/memgraph.conf
. If the
Memgraph configuration is altered, Memgraph needs to be restarted.
Where to next?
To learn how to query the database, take a look at the
Querying guide or Memgraph
Playground for interactive tutorials.
Visit the Building applications
page if you need to connect to the database programmatically.
Getting help
If you run into problems during the installation process, check out our installation troubleshooting guide to see if we have already covered the topic. For more information on the installation process and for additional questions, visit the Getting help page.