분류 전체보기 (264) 썸네일형 리스트형 Your dtc is too old, please upgrade to dtc 1.4 or newer CHK include/config.h GEN include/autoconf.mk GEN include/autoconf.mk.dep GEN spl/include/autoconf.mk CHK include/config/uboot.release CHK include/generated/timestamp_autogenerated.h./scripts/dtc-version.sh: 줄 17: dtc: 명령어를 찾을 수 없음 UPD include/generated/timestamp_autogenerated.h./scripts/dtc-version.sh: 줄 18: dtc: 명령어를 찾을 수 없음*** Your dtc is too old, please upgrade to dtc 1.4 or newerMakefile:137.. 파이썬 ImportError: No module named requests ImportError: No module named requests requests 모듈이 없다는 얘기이다. 아래의 명령으로 설치를 한다. $sudo pip install requests 만약 pip가 설치되어 있지 않다면 pip부터 설치하자. $sudo apt install python-pip 혹시 requests를 설치하려는데 아래와 같은 메시지가 나타난면..Requirement already satisfied (use --upgrade to upgrade): requests in /usr/local/lib/python3.5/dist-packages 그냥 소스 코드를 직접 다운로드해서 설치하는 것이 정신건강에 좋을 수 있다. $ git clone git://github.com/kennethreitz/.. 파이썬 한글 문제 해결하기 - SyntaxError: Non-ASCII character SyntaxError: Non-ASCII character '\xec' in file aaa.py on line 8, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details 한글이 포함된 python 코드를 돌리면 위와 같은 에러가 발생한다. 이럴 경우 소스 코드의 최상위에 아래의 문구만 하나 넣어주면 해결이 된다. # -*- coding: utf-8 -*- fatal error: Python.h: No such file or directory 아래와 같이 명령어를 입력하여pyaudio를 설치하려 했다.그러자 엄청난 에러가 발생했다.$ sudo pip install pyaudio 에러들....Downloading/unpacking pyaudio Downloading PyAudio-0.2.9.tar.gz (289kB): 289kB downloaded Running setup.py (path:/tmp/pip-build-vnFPg1/pyaudio/setup.py) egg_info for package pyaudio warning: no files found matching '*.c' under directory 'test'Installing collected packages: pyaudio Running setup.py install for pyau.. TypeError: ufunc 'multiply' did not contain a loop with signature matching types dtype('S32') TypeError: ufunc 'multiply' did not contain a loop with signature matching types dtype('S32') 처음 이 에러를 보게 된것은"머신러닝 인 액션" 이라는 책의 예제코드를 테스트하다가 였다. numpy의 array를 생성한 후 연산할 경우 위와 같은 에러가 발생할 수 있다. 또는 Traceback (most recent call last): File "", line 1, in TypeError: ufunc 'multiply' did not contain a loop with signature matching types dtype('S32') dtype('S32') dtype('S32') 책의 예제코드를 보자 >>> a = numpy.ar.. SystemError: Cannot compile 'Python.h'. Perhaps you need to install python-dev|python-devel. SystemError: Cannot compile 'Python.h'. Perhaps you need to install python-dev|python-devel. numpy 설치 시 위와 같은 메시지가 나타나고 설치에 실패하였다면아래의 링크과 비슷한 유형의 문제이다. http://chandong83.blog.me/220832858287 즉, python-dev 패키지를 설치해주면 된다. $ sudo apt-get install python-dev LibreELEC - ssh 활성화하기 LibreELEC 처음 부팅시ssh를 사용할 것인지 물어본다. 이때 설정을 하지 않았다면 다음과 같이 순서대로 진행하면 언제든지 ssh를 활성화시킬 수 있다. 홈 화면 > 시스템 > LibreELEC > 서비스 > SSH / Enable SSH 키보드의 ENTER 키를 눌러서 선택한다. ssh 접속에 대해서는 아래의 링크를확인하기 바란다.http://chandong83.tistory.com/42 아래는 ssh로 연결된 하면이다. LibreELEC - ssh 기본 비밀번호 NOOBS OS를 이용하여 LibreELEC 설치하였다면 기본 ssh의 아이디/패스워드는 다음과 같다. ID : rootPASSWORD : libreelec 자 이제 변경해보자. 우선 IP 주소부터 확인한다. 메인 메뉴 > 시스템 > 시스템 정보 IP주소를 알았으니 ssh로 접속하면 된다. $ ssh root@192.168.25.53 이전 1 ··· 25 26 27 28 29 30 31 ··· 33 다음