가끔 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
'코딩 에러' 카테고리의 다른 글
ValueError: invalid literal for int() with base 10: '1350.0' (0) | 2019.12.20 |
---|---|
Could not install packages due to an EnvironmentError: [Errno 13] Permisfo'Consider using the `--user` option or check the permissions. 오류 해결 방법 (0) | 2019.12.07 |
pydensecrf 설치 오류/ install fail (0) | 2019.04.14 |
numpy 배열 모두 출력 또는 ... 출력 / print all numpy arrays (0) | 2019.03.04 |
우분투 boost 설치 (0) | 2019.02.28 |