# Conda でインストール

{% hint style="warning" %}
Conda をお持ちの場合のみ使用してください。お持ちでない場合は、 [Pip](https://unsloth.ai/docs/jp/meru/install/pip-install).
{% endhint %}

いずれかを選択してください `pytorch-cuda=11.8,12.1` は CUDA 11.8 または CUDA 12.1 用です。私たちは以下をサポートしています `python=3.10,3.11,3.12`.

```bash
conda create --name unsloth_env python=3.11 -y
conda activate unsloth_env
pip install unsloth
```

Linux 環境に Conda をインストールしたい場合は、 [ここを読む](https://docs.anaconda.com/miniconda/)、または以下を実行してください：

{% 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/jp/meru/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.
