Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions docs/source/installation/uv.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,10 @@ The following commands will
The name for the Python project is *manimations*, which you can change
to anything you like.

Manim does not yet support Python 3.14 and the Python version is therefore set to 3.13.

```bash
uv init manimations
uv init --python 3.13 manimations
cd manimations
uv add manim
```
Expand Down Expand Up @@ -200,8 +202,10 @@ Manim itself! The following commands will
The name for the Python project is *manimations*, which you can change
to anything you like.

Manim does not yet support Python 3.14 and the Python version is therefore set to 3.13.

```bash
uv init manimations
uv init --python 3.13 manimations
cd manimations
uv add manim
```
Expand Down Expand Up @@ -253,11 +257,13 @@ As soon as the required dependencies are installed, you can create
a Python project (feel free to change the name *manimations* used below
to some other name) with a local environment containing Manim by running
```bash
uv init manimations
uv init --python 3.13 manimations
cd manimations
uv add manim
```

Manim does not yet support Python 3.14 and the Python version is therefore set to 3.13.

:::::

::::::
Expand Down
Loading