Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 30 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3405,7 +3405,36 @@ export default withNextra({
destination: '/ai-ecosystem#graphchat',
permanent: true
},

{
source: '/getting-started/build-memgraph-from-source#obtaining-the-source-code',
destination: '/getting-started/build-memgraph-from-source#obtain-the-source-code',
permanent: true
},
{
source: '/getting-started/build-memgraph-from-source#downloading-the-dependencies',
destination: '/getting-started/build-memgraph-from-source#download-dependencies-required-for-methods-1--2',
permanent: true
},
{
source: '/getting-started/build-memgraph-from-source#compiling',
destination: '/getting-started/build-memgraph-from-source#toolchain-installation-required-for-methods-1--2',
permanent: true
},
{
source: '/getting-started/build-memgraph-from-source#toolchain-installation-procedure',
destination: '/getting-started/build-memgraph-from-source#toolchain-installation-required-for-methods-1--2',
permanent: true
},
{
source: '/getting-started/build-memgraph-from-source#installing-memgraph-dependencies',
destination: '/getting-started/build-memgraph-from-source#download-dependencies-required-for-methods-1--2',
permanent: true
},
{
source: '/getting-started/build-memgraph-from-source#running-memgraph',
destination: '/getting-started/build-memgraph-from-source#run-memgraph',
permanent: true
},


// END: NEW MEMGRAPH LAB REDIRECTS
Expand Down
6 changes: 3 additions & 3 deletions pages/advanced-algorithms/install-mage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ sudo apt-get update && sudo apt-get install -y \
git \
pkg-config \
uuid-dev \
libxmlsec1-dev xmlsec1 \
xmlsec1 \
--no-install-recommends
```

Expand All @@ -109,7 +109,7 @@ git clone --recurse-submodules https://github.com/memgraph/mage.git && cd mage

Download and install the [Memgraph Toolchain](https://memgraph.com/docs/getting-started/build-memgraph-from-source#toolchain-installation-procedure):
```bash
curl -L https://s3-eu-west-1.amazonaws.com/deps.memgraph.io/toolchain-v6/toolchain-v6-binaries-ubuntu-24.04-amd64.tar.gz -o toolchain.tar.gz
curl -L https://s3-eu-west-1.amazonaws.com/deps.memgraph.io/toolchain-v7/toolchain-v7-binaries-ubuntu-24.04-amd64.tar.gz -o toolchain.tar.gz
sudo tar xzvfm toolchain.tar.gz -C /opt
```

Expand Down Expand Up @@ -146,7 +146,7 @@ python3 -m pip install -r python/requirements-gpu.txt
Run the following command:

```shell
source /opt/toolchain-v6/activate
source /opt/toolchain-v7/activate
python3 setup build
sudo cp -r dist/* /usr/lib/memgraph/query_modules
```
Expand Down
3 changes: 2 additions & 1 deletion pages/getting-started/_meta.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
export default {
"install-memgraph": "Install Memgraph",
"cli": "CLI",
"first-steps-with-docker": "First steps with Docker"
"first-steps-with-docker": "First steps with Docker",
"build-memgraph-from-source": "Build Memgraph from source"
}


Expand Down
Loading