# Linux - xeline tutorial

## Install from binary

{% code title="#install\_guide" %}

```bash
# Make sure unzip is installed
sudo apt-get install -y unzip

# Download the latest linux zip archive from:
https://github.com/xel-software/xeline/releases/latest

# Unzip the downloaded zip archive
unzip xeline-linux.zip

# Go into the directory containing the binary and launch it
cd Xeline-linux-x64
./Xeline
```

{% endcode %}

## **Install from source:**

{% code title="#install\_guide" %}

```bash
# Make sure curl and git are installed
sudo apt-get install -y curl git

# Install a recent version of nodejs first, if you haven't already.
#For Ubuntu/Debian is works like this
curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
sudo apt-get install -y nodejs

# Get the repository
git clone https://github.com/xel-software/xeline.git

# Or if you already have it, cd into the directory containing your xeline sources and update the code
cd xeline
git pull

# Now, go into the directory containing your xeline sources and install all dependencies
# (needs to be done only once)
cd xeline
npm install

# And finally, run the application
npm start
```

{% endcode %}

## Video tutorial

{% embed url="<https://vimeo.com/265864522>" %}
linux video tutorial
{% endembed %}

{% content-ref url="../xel\_miner" %}
[xel\_miner](https://xel.gitbook.io/wiki/tutorials/xel_miner)
{% endcontent-ref %}

>


---

# Agent Instructions: 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:

```
GET https://xel.gitbook.io/wiki/tutorials/xeline_wallet/linux.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
