Skip to content

Installation guide suggests Python 3.8, but fails due to ipython>=8.18.0 requiring Python ≥3.9 #2405

@LeON-Nie-code

Description

@LeON-Nie-code

Description

The installation instructions in the README suggest using:

conda create -n manim python=3.8
conda activate manim
pip install -e .

However, installing with Python 3.8 fails with the following error:

ERROR: Could not find a version that satisfies the requirement ipython>=8.18.0
ERROR: No matching distribution found for ipython>=8.18.0

The root cause is that ipython>=8.18.0 requires Python ≥3.9.
Therefore, the environment should be created with Python 3.9 or higher.

Proposed fix

Update the installation section to:

conda create -n manim python=3.9
conda activate manim
pip install -e .

Environment

  • macOS (or Linux)
  • Python 3.8 (fails)
  • manimgl==1.7.2
  • pip 24.x

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions