> For the complete documentation index, see [llms.txt](https://jupitersim.gitbook.io/jupiter/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jupitersim.gitbook.io/jupiter/es/installation/linux/image.md).

# Opción 3: App Image

## Instalación

Para instalar Jupiter, por favor descargue la imagen de la aplicación y el script de ejecución utilizando los siguientes enlaces:

{% embed url="<https://git.io/Je8kd>" %}
Jupiter-3.1-linux.zip (imagen)
{% endembed %}

{% file src="/files/-Lr5CqB00mJkEaiJEldp" %}
jupiter (script de ejecución)
{% endfile %}

Abra una terminal y ejecute los siguientes comandos (asumiendo que los archivos se descargaron en **\~/Downloads**):

```bash
unzip Jupiter-3.1-linux.zip
sudo rm -rf /opt/jupiter
sudo rm -f /usr/bin/jupiter
sudo mv image /opt/jupiter
sudo mv jupiter.sh /usr/bin/jupiter
sudo chmod +x /usr/bin/jupiter
```

{% hint style="warning" %}
Necesitará permisos de super usuario para ejecutar los comandos anteriores.
{% endhint %}

{% hint style="info" %}
Necesitará tener instalado el programa `unzip`. Si no lo tiene instalado en su computadora, por favor ejecute lo siguiente en una terminal:

```bash
sudo apt-get install unzip
```

{% endhint %}

Para verificar que la instalación se haya efectuado correctamente pruebe lo siguiente en una terminal:

```bash
jupiter -v
```

Debería de ver la siguiente salida:

```bash
        __          _ __         
    __ / /_ _____  (_) /____ ____
   / // / // / _ \/ / __/ -_) __/
   \___/\_,_/ .__/_/\__/\__/_/
           /_/                   

RISC-V Assembler & Runtime Simulator
               v3.1
```

## Desinstalación

Para desinstalar en algún futuro Jupiter, simplemente tiene que hacer lo siguiente en una terminal:

```bash
sudo rm -rf /opt/jupiter
sudo rm -f /usr/bin/jupiter
```

Luego de utilizar estos comandos el simulador quedará completamente desinstalado de su computadora.

## Actualizaciones

Cada vez que haya una actualización del simulador y este sea su método de instalación, por favor revise esta página para descargar el archivo más reciente e instalarlo utilizando las mismas instrucciones.


---

# 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://jupitersim.gitbook.io/jupiter/es/installation/linux/image.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.
