fatal error C1083: Cannot open include file: 'mysql.h': No such file or directory fatal error C1083: Cannot open include file: 'mysql.h': No such file or directory 에러가 날 경우 위의 내용을 잘 보면 "-IC:\Program Files (x86)\MySQL\MySQL Connector C 6.1\include" 라는 문구가 있다. MySQL Connector C 6.1 버전을 다운받아 설치하고. 64 bit를 설치했을테니 Program Files (x86) 경로에 복사 붙여넣기를 해주면 된다. 더보기 ImportError("The _imagingft C module is not installed") 위 에러는 pillow 라이브러리에서 버전이 올라갈때 _imagingft가 없어져서 나오는 문제다. pillow를 낮은 버전으로 재설치 하여 해결했다. 하고 나면 낮은 버전의 pillow 때문에 다른 라이브러리에 문제있을거라는 에러가 나는데 일단 무시하도록 한다. sudo apt-get install libfreetype6-dev pip uninstall pillow pip install pillow==2.8.2 더보기 ImportError: cannot import name 'string_int_label_map_pb2' Jetson Nano에서 Object detection 라이브러리를 동작시키려고 할때 나는 에러로 models/research/setup.py 를 이용할 때 발생되는 에러를 고침으로 해결할 수 있다. python3 setup.py build python3 setup.py install 위 명령어를 실행할 때 로그를 잘 보면 print 문을 python2에 맞춰서 print '~~~' 이렇게 써져있는데 모두다 print()로 바꾸고 다시 build, install 하면 정상적으로 인스톨되고 해당 에러도 사라진다. 더보기 이전 1 ··· 4 5 6 7 8 9 10 다음