AttributeError: 'Camera' object has no attribute '_is_outdated' #4248
Replies: 2 comments
-
|
Traceback (most recent call last): |
Beta Was this translation helpful? Give feedback.
-
|
I encountered the exact same error when using Root cause: A version mismatch between AWS packages. My Conda environment had newer Fix that worked for me: # Activate your conda env first
pip uninstall boto3 botocore s3transfer aiobotocore -y
pip install boto3==1.28.61 botocore==1.31.61 s3transfer==0.7.0After reinstalling compatible versions, the script ran successfully with |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
请问大家有遇到过这个问题吗AttributeError: 'Camera' object has no attribute '_is_outdated',在复现论文时候遇到了这个问题,isaaclab用的是1.2.0,isaacsim是4.2.0版本的
Beta Was this translation helpful? Give feedback.
All reactions