(x64) C:\Users\ultra\Desktop\Study\CartPole> c: && cd c:\Users\ultra\Desktop\Study\CartPole && cmd /C "C:\Users\ultra\anaconda3\envs\x64\python.exe c:\Users\ultra.vscode\extensions\ms-python.python-2021.8.1105858891\pythonFiles\lib\python\debugpy\launcher 56730 -- c:\Users\ultra\Desktop\Study\CartPole\2048_dqn.py "
ModuleNotFoundError: No module named 'numpy.core._multiarray_umath'
gym-2048을 설치했더니 numpy버전에 문제가 생겼다.-_-;;
conda를 통해서 설치하면 괜찮으러나? 여하튼..문제가 생겨서…
conda install -c conda-forge numpy
위와 같은 명령어를 통해 numpy를 재설치 하였다.
그랬더니…
numpy 버전이 낮다고 또 실행이 안된다..
Exception has occurred: ImportError
Something is wrong with the numpy installation. While importing we detected an older version of numpy in ['C:\\Users\\ultra\\anaconda3\\envs\\x64\\lib\\site-packages\\numpy']. One method of fixing this is to repeatedly uninstall numpy until none is found, then reinstall this version.
File "C:\Users\ultra\Desktop\Study\CartPole\2048_dqn.py", line 2, in <module>
import gym_2048
흠….에러 메시지를 자세히 읽어보니…Uninstall을 반복해서 하고, 재설치를 하라고 되어있다.
conda uninstall numpy 명령어 여러번. + pip uninstall numpy를 여러번 쳤더니….여러번 지우더라;; 뭔가 복잡하게 설치가 된듯..
패키지 관리는 …………… 정말 hell이다..ㅠ