# Conda-Installation

{% hint style="warning" %}
Verwenden Sie Conda nur, wenn Sie es haben. Falls nicht, verwenden Sie [Pip](/docs/de/loslegen/install/pip-install.md).
{% endhint %}

Wählen Sie entweder `pytorch-cuda=11.8,12.1` für CUDA 11.8 oder CUDA 12.1. Wir unterstützen `python=3.10,3.11,3.12`.

```bash
conda create --name unsloth_env python=3.11 -y
conda activate unsloth_env
Beachten Sie, dass
```

Wenn Sie Conda in einer Linux-Umgebung installieren möchten, [hier lesen](https://docs.anaconda.com/miniconda/), oder führen Sie das Folgende aus:

{% code overflow="wrap" %}

```bash
mkdir -p ~/miniconda3
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh
bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3
rm -rf ~/miniconda3/miniconda.sh
~/miniconda3/bin/conda init bash
~/miniconda3/bin/conda init zsh
```

{% endcode %}


---

# 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://unsloth.ai/docs/de/loslegen/install/conda-install.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.
