Replies: 4 comments 12 replies
|
Hi, did you solve the problem, I got the same issua too :< |
|
I did this and it's working for me now: |
|
Thanks! It works for me: |
Summary & Root Cause AnalysisBuilding on the helpful notes from @applepope and @doslke, the Looking at the provided
Clean Recovery ProcedureRather than manually modifying metadata or # 1. Activate your Conda/Isaac Lab environment
conda activate isaaclab
# 2. Downgrade NumPy to 1.26.4 (ABI compatible with Isaac Sim 4.5/5.1)
pip install "numpy<2.0.0,>=1.26.0" --force-reinstall
# 3. Pin Tensordict to 0.11.0 (prevents Windows C++ memory access violations)
pip install "tensordict==0.11.0" --force-reinstall --no-cache-dir
# 4. Re-verify h5py version compatibility
pip install "h5py==3.11.0"Clean Environment Verification SequenceTest environment stability with a headless RL environment step: # Run standard Cartpole RL task test
.\isaaclab.bat -p source\standalone\workflows\rsl_rl\train.py --task Isaac-Cartpole-v0 --headless --num_envs 64Additional Diagnostic Information (If Issue Persists)If an Access Violation still occurs after enforcing
|
Uh oh!
There was an error while loading. Please reload this page.
Hi,
I tried to install Isaac Lab for several days now without success. I'm quite desperate and will take any help that you could provide.
I will try to give you as much details as possible but feel free to ask me more information.
I'm on Windows 11 (25H2) and I followed the documentation for installation. I first installed Isaac Sim (5.1.0 with binaries) and it works well, I've done the first tutos without issue.
Then, I followed the doc to install last version of Isaac Lab (2.3.2) and I initially faced an issue with h5py but found a thread suggesting to force the version in setup.py file with "h5py==3.15.1" and it dis the job, I now have a successful installation. My problem is happening when trying to run the example (mentioned at the end of install doc) :
isaaclab.bat -p scripts/reinforcement_learning/rsl_rl/train.py --task=Isaac-Ant-v0
I have a crash right after the message "Simulation App Startup Complete", which is : "Windows fatal exception: access violation".
If I launched a simple test to create an empty project, it works fine, so it seems related to RL part.
I attach the full log here :
log.txt
I've tried several things like :
complete re-installation
driver downgrade to 580.88
but no success
My GPU is an RTX 5080 with 16GB VRAM - CPU is Intel(R) Core(TM) Ultra 7 265KF - RAM is 32GB. should be more than enough to run the example.
Please help 🙏
All reactions