Replies: 6 comments 1 reply
-
Thank you for posting this. Before running the installation of Isaac Lab, are you activating your conda environment?
|
Beta Was this translation helpful? Give feedback.
-
I am not using a conda environment, but rather a virtual environment created through uv, as indicated in the pyproject.toml I showed above. |
Beta Was this translation helpful? Give feedback.
-
Interesting. Where is your |
Beta Was this translation helpful? Give feedback.
-
I just did a search in the project folder and found one python.bat file, which was located in: where I might be using this file implicitly whenever I call python, but if so I was not aware of it and have certainly not set it manually at any point. |
Beta Was this translation helpful? Give feedback.
-
Following up, I will move this post to our Discussions section. In the meantime, note that this typically results from a misconfigured or inactive Python environment. Here’s how you may be able to resolve it. Why This Error OccursThe error message:
indicates that the script is searching for a Python interpreter in a specific location (usually a bundled Isaac Sim Python), but it cannot find it. This is often because:
Official Installation Steps (Windows, Pip Method)1. Create and Activate a Python 3.10 Environment
conda create -n env_isaaclab python=3.10
conda activate env_isaaclab
python3.10 -m venv env_isaaclab
env_isaaclab\Scripts\activate 2. Install PyTorch (CUDA version must match your GPU drivers): pip install torch==2.5.1 torchvision==0.20.1 --index-url https://download.pytorch.org/whl/cu121 3. Upgrade pip: python -m pip install --upgrade pip 4. Install Isaac Sim via pip: pip install 'isaacsim[all,extscache]==4.5.0' --extra-index-url https://pypi.nvidia.com 5. Clone Isaac Lab and Install: git clone https://github.com/isaac-sim/IsaacLab.git
cd IsaacLab
isaaclab.bat --install Key Points to Check
What To Do If You Still Get the Error
isaaclab.bat --install (not
Verifying InstallationAfter installation, test with: isaaclab.bat -p scripts\tutorials\00_sim\create_empty.py or python scripts\tutorials\00_sim\create_empty.py This should launch Isaac Sim with a black viewport if everything is set up correctly1. Additional Tips
Summary Table
If you follow these steps and ensure your environment is properly activated, the error should be resolved. If not, please provide the output of Footnotes |
Beta Was this translation helpful? Give feedback.
-
I found that So |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am following the recommended way of installing isaacsim and isaac lab for windows as given here:
https://isaac-sim.github.io/IsaacLab/main/source/setup/installation/pip_installation.html
Installing isaacsim from pip works fine, but the trouble starts after I clone isaac lab into my project folder.
At that point my root project folder looks like this:
If I then cd into IsaacLab and run:
The error messages are pretty clear in that isaaclab.bat is missing a python environment, but I'm not sure why that is or what exactly I should do to fix this?
Additional Information
My pyproject.toml looks like this:
Beta Was this translation helpful? Give feedback.
All reactions