오류 해결 방법/파이썬(Python) (22) 썸네일형 리스트형 No module named 'numpy' If the error as below occurs, No module named 'numpy' You should install the numpy. pip install numpy No module named 'tqdm' If the error as below occurs, No module named 'tqdm' You should install the tqdm. pip install tqdm No module named 'tensorboardX' If the error as below occurs, No module named 'tensorboardX' You should install the tensorboardX. pip install tensorboardX cannot import name 'prng' from 'gym.spaces' If the error as below occurs, cannot import name 'prng' from 'gym.spaces' You should install the gym pip uninstall gym pip install gym==0.10.5 No module named 'gym' 오류 해결법 No module named 'gym' 이라는 오류가 발생한다면 현재 디렉토리에 gym이 설치되어 있지 않아서입니다. 다음과 같은 오류가 뜰 경우는 gym을 설치해주기만 하면 해결이 됩니다. 설치하는 방법은 다음과 같습니다. pip install gym No module named 'PIL' 오류 해결하는 방법 다음과 같은 오류가 발생하면 No module named 'PIL' 해결 방법은 다음과 같다. pip install pillow 설치하고자 하는 경로에 들어가서 아래와 같이 써주면, 성공적으로 설치가 되는 모습을 볼 수 있다. 다시 실행시켜보면 오류가 사라진 것을 확인할 수 있다. 이전 1 2 3 다음