numpy version issue #4
Replies: 3 comments
-
|
3줄 요약
============ 지적 감사합니다! 그런데 제 경우는 (ICM-pytorch) (base) hyeann@mdilrg-64:~/Intrinsic-Curiosity-Module---PyTorch$ python3
Python 3.9.19 (main, May 6 2024, 19:43:03)
[GCC 11.2.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> numpy.__version__
'1.26.4'
>>> quit()
(ICM-pytorch) (base) hyeann@mdilrg-64:~/Intrinsic-Curiosity-Module---PyTorch$터미널에 쳐보면 1.26.4라고 나오고, 입니다. 여튼 요지는, version을 내리는 것에는 동의, 하지만 1.26.4에서도 동작한다는 것이 제 의견입니다! |
Beta Was this translation helpful? Give feedback.
-
|
제 경우는 최신 pytorch를 사용하고 싶어서 다음 명령어( => 제가 torch버전을 바꾼게 문제였습니다! 1.26.4에서 동작 가능하면 그대로 사용하면 될 것 같습니다. |
Beta Was this translation helpful? Give feedback.
-
|
굳!! 수정해서 푸시하겠습니다 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
After creating a new environment with conda, the default version of numpy was 1.26.4.
However, downgrading to numpy 1.26.0 resolved issues with using gym.wrapper modules.
pip install numpy==1.26.0So, you can use this.
Beta Was this translation helpful? Give feedback.
All reactions