본문 바로가기

728x90
반응형

error

(4)
[Numpy] module 'numpy' has no attribute 'object', 'bool', 'typeDict'. 에러 해결 텐서플로를 사용하기 위해서 tensorflow를 import하는 중 import tensorflow as tf 아래와 같은 오류가 나왔다. AttributeError: module 'numpy' has no attribute 'object'. `np.object` was a deprecated alias for the builtin `object`. To avoid this error in existing code, use `object` by itself. Doing this will not modify any behavior and is safe. The aliases was originally deprecated in NumPy 1.20; for more details ..
[Prophet] TypeError: ufunc 'isfinite' not supported for the input types 에러 Prophet을 실행하다가 갑자기 아래와 같은 에러가 등장했다. TypeError: ufunc 'isfinite' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''해결 numpy와 matplotlib의 버전이 호환이 잘 안되는 경우 발생하는 문제로 확인된다. 따라서 두 패키지를 업데이트 하면 잘 실행이 된다. pip install numpy --upgrade pip install matplotlib --upgrade
[Android] invalid vcs root mapping 해결 요약 GitHub에서 코드를 불러왔는데, invalid vcs root mapping와 같은 에러가 나왔다 [File] - [Settings] - [Version Control] 위의 주소로 들어가서 빨갛게 되어있는 디렉터리에 해당하는 VCS를 으로 변경해준다.
[Android] gradle build error 해결법 요약 - an exception occurred applying plugin request [id: 'com.android.application'] GitHub에서 코드를 내려받고 실행하려는 데, an exception occurred applying plugin request [id: 'com.android.application'] 라는 메시지와 함께 실행이 되지 않았다. gradle을 사용하기 위해서는 Java 11을 사용해야한다. [File] - [Settings] - [Build, Execution, Deployment] - [Build Tools] - [Gradle] - [Gradle JDK] 위의 경로로 들어가 11version 을 설정해주면 해결된다.

728x90
반응형