From 61a81f5111047878a870954b5ee70b29720362b5 Mon Sep 17 00:00:00 2001 From: Functionhx <2994114386@qq.com> Date: Thu, 9 Jul 2026 22:55:28 +0800 Subject: [PATCH] docs: fix conda Python version in README install instructions The aihabitat channel only has packages for Python 3.9, not 3.12. Fixes #2625 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d33541258..50ee9fce40 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ Habitat is under active development, and we advise users to restrict themselves Assuming you have [conda](https://docs.conda.io/projects/conda/en/latest/user-guide/install/) installed, let's prepare a conda env: ```bash # We require python>=3.9 and cmake>=3.22 - conda create -n habitat python=3.12 cmake=3.27 + conda create -n habitat python=3.9 cmake=3.27 conda activate habitat ```