@@ -23,18 +23,18 @@ If you are already using Miniconda, follow these steps:
2323
2424** Step 0.** Download and install Miniconda from the [ official website] ( https://docs.anaconda.com/miniconda/ ) .
2525
26- ** Step 1.** Create a conda environment with Python 3.10 ~ 3.13 (Python 3.12 is recommended) and activate it.
26+ ** Step 1.** Create a conda environment with Python 3.11 ~ 3.13 (Python 3.12 is recommended) and activate it.
2727
2828> [ !NOTE]
2929> Other Python versions require compatibility verification on your own.
3030
3131``` bash
3232# CPU Environment [Windows/Linux/macOS]
33- conda create --name x-anylabeling-cpu python=3.10 -y
33+ conda create --name x-anylabeling-cpu python=3.12 -y
3434conda activate x-anylabeling-cpu
3535
3636# CUDA 11.x Environment [Windows/Linux]
37- conda create --name x-anylabeling-cu11 python=3.11 -y
37+ conda create --name x-anylabeling-cu11 python=3.12 -y
3838conda activate x-anylabeling-cu11
3939
4040# CUDA 12.x Environment [Windows/Linux]
@@ -48,7 +48,7 @@ You can also use Python's built-in `venv` module to create virtual environments:
4848
4949``` bash
5050# CPU [Windows/Linux/macOS]
51- python3.10 -m venv venv-cpu
51+ python3.12 -m venv venv-cpu
5252source venv-cpu/bin/activate # Linux/macOS
5353# venv-cpu\Scripts\activate # Windows
5454
@@ -58,7 +58,7 @@ source venv-cu12/bin/activate # Linux
5858# venv-cu12\Scripts\activate # Windows
5959
6060# CUDA 11.x [Windows/Linux]
61- python3.11 -m venv venv-cu11
61+ python3.12 -m venv venv-cu11
6262source venv-cu11/bin/activate # Linux
6363# venv-cu11\Scripts\activate # Windows
6464```
@@ -79,7 +79,7 @@ powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
7979
8080``` bash
8181# CPU Environment [Windows/Linux/macOS]
82- uv venv --python 3.10 .venv-cpu
82+ uv venv --python 3.12 .venv-cpu
8383source .venv-cpu/bin/activate # Linux/macOS/WSL2
8484# .venv-cpu\Scripts\activate # Windows
8585
@@ -89,7 +89,7 @@ source .venv-cu12/bin/activate # Linux
8989# .venv-cu12\Scripts\activate # Windows
9090
9191# CUDA 11.x Environment [Windows/Linux]
92- uv venv --python 3.11 .venv-cu11
92+ uv venv --python 3.12 .venv-cu11
9393source .venv-cu11/bin/activate # Linux
9494# .venv-cu11\Scripts\activate # Windows
9595```
0 commit comments