본문 바로가기

코딩 에러

NotImplementedError: It is not currently possible to manually set the aspect on 3D axes 에러 해결

가끔 3D를 조작할 때, 이런 에러가 뜨는 경우가 있다. 

 

'It is not currently possible to manually set the aspect '
NotImplementedError: It is not currently possible to manually set the aspect on 3D axes

 

이유는 정확히 모르겠지만, matplotlib를 2버젼으로 바꾸면 된다.

아마 3버젼은 python3으로만 되어야한다나 뭐라나...

현재 버젼이 3으로 되어있는 사람들은 2로 바꾸자

 

pip install matplotlib==2.2

 

 

 

 

[english]

when we do something 3D in python, this error message can rise.

 

'It is not currently possible to manually set the aspect '
NotImplementedError: It is not currently possible to manually set the aspect on 3D axes

 

it was matplotlib problem in my case

matplotlib 3 version is only for python3 i guess??

so you just need to change matplotlib version 3 to 2..

put this command at your anaconda enviroment

 

pip install matplotlib==2.2