numpy
FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
Numpy 버전 에러! 기존과 달리 최신 numpy 버전에서는 다르게 취급된다는 경고 메세지. 따라서 기존에 설치되어있는 numpy(최신)를 제거하고, 하위 버전으로 재설치하면 해결! pip show numpy : 현재 설치된 numpy 버전 학인 pip uninstall numpy : numpy 삭제 pip install numpy==1.16.4 : 이 버전의 numpy로 재설치 정상 작동!