> For the complete documentation index, see [llms.txt](https://docs.neverinstall.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.neverinstall.com/spaces/installing-new-applications.md).

# Installing New Applications

With Neverinstall, users have the ability to install any new applications they need. Thanks to the sudo access granted to each user, you can install applications directly from the web within the space provided, or from the terminal.

1. **Installing Applications from the Web**: You can visit the website of the software you want to install, download the Linux-compatible installation file, and then execute it within your Neverinstall environment.
2. **Installing Applications from the Terminal**: If you're comfortable with the command line, you can install applications using the terminal. For instance,you can use the apt package manager to install applications. Here's an example of how you would install a program like GIMP:

{% code overflow="wrap" %}

```bash
sudo apt update
sudo apt install gimp
```

{% endcode %}

{% embed url="<https://tella.video/sudoaccess-fyaj>" %}

After running these commands, the GIMP graphics editor will be installed on your virtual Linux environment.

Remember that any changes you make, including installing new applications, will be saved to your session. The next time you log into Neverinstall, you'll be able to access all your installed applications, just like on a regular PC.

### Adding a new app from the Dock

While working within a Space, users can add a new app to their instance without the need to pause or create a new Space. To add a new app, navigate to the right corner of the dock and click on the blue button with the plus sign titled “Add new app”. Once clicked the button with open a dialogue box with all the apps and extensions available on the platform.

From the dialogue box, the user can select any apps (along with the desired extensions) to add to the Space. All selected apps and extensions will be displayed in the selection bay. Once selected, the desired apps and extensions can be added to the current Space by clicking on the “Add apps” button below located below the selection bay.

<figure><img src="/files/IQilkzTSWd8e4QTyJnSh" alt=""><figcaption></figcaption></figure>


---

# 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.neverinstall.com/spaces/installing-new-applications.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.
