> For the complete documentation index, see [llms.txt](https://docs.melproject.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.melproject.org/developer-guides/run-a-full-node/melnode-quick-start.md).

# Melnode quick start

## Setup and Installation

### Hardware requirements

#### Minimum

* 1-core CPU
* 4 GB of RAM
* at least 200 GB of free storage (SSD not necessary)
* 10 Mbps download Internet service

#### Recommended

* 4+ core CPU
* 16 GB of RAM
* 200+ GB of free storage on a fast device (SSD, RAID array, etc)
* 50+ Mbps up/download Internet service

### Install Rust and Cargo

For security reasons, until we have reliable, reproducible build infrastructure, we stick to releasing source code and do not distribute any official binary packages.

Fortunately, Rust's package manager, Cargo, is *very* easy to use, likely easier than whichever package manager you are already accustomed to.

Follow the [instructions](https://doc.rust-lang.org/cargo/getting-started/installation.html) from the official Cargo Book to get started. Make sure that the `cargo` command is available and of the latest version:

<pre class="language-shell-session"><code class="lang-shell-session"><strong>cargo version
</strong>cargo 1.76.0 (c84b36747 2024-01-18)
</code></pre>

## Compile and install melnode

Simply run the following command:

```shell-session
cargo install --locked melnode
```

{% hint style="info" %}
Don't forget the `--locked` parameter! That ensures that all dependencies are locked to the specific version we specify, which can sometimes be important for correct functionality.
{% endhint %}

This should kick off a fairly long build process, but eventually you should see something like this, indicating that `melnode` has been installed successfully:

```shell-session
   Compiling Mel-bootstrap v0.6.1
   Compiling imbl v1.0.1
   Compiling lz4_flex v0.8.2
   Compiling arc-swap v1.5.1
   Compiling clone-macro v0.1.0
   Compiling jemallocator v0.3.2
   Compiling jemallocator-global v0.3.2
   Compiling rusqlite v0.26.3
   Compiling boringdb v0.4.1
   Compiling melnode v0.14.0
    Finished release [optimized] target(s) in 1m 29
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.melproject.org/developer-guides/run-a-full-node/melnode-quick-start.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
