OSX
-
[ocr] 맥(osx)에 tesseract 설치하기 (used brew)AI 2020. 12. 10. 11:08
Install $ brew install imagemagick $ brew install tesseract $ brew install tesseract-lang $ tesseract --list-langs Test $ convert input.png -resize 400% -type Grayscale input.tif $ tesseract -l eng input.tif output Result: Reference: gist.github.com/henrik/1967035
-
[solved] ERROR 1055 (42000): Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'db.table.id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_byDatabase/mysql 2020. 9. 23. 10:15
mysql에서 sql문에 'GROUP BY'를 사용하는데 아래와 같은 에러가 발생했다. ERROR 1055 (42000): Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'db.table.id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by 쉽게 말하자면 sql_mode=only_full_group_by로 되어 있으면 잘못된 GROUP BY 사용을 제한한다. 엄격하게 용도에 맞게 사용 됐을때만 쿼리가 성공한다. 나의 경우 테이..
-
The configuration file __MACOSX/eb-node-express-sample-v1.1/.ebextensions/._create-sns-topic.config in application version 1.2 contains invalid YAML or JSON. YAML exception: Invalid Yaml: unacceptable character '�' (0x0) special characters are not all..Infra/AWS 2020. 8. 7. 16:53
Elasticbeanstalk에 node.js 어플리케이션을 배포하기위해 .zip 파일을 업로드하면 아래와 같은 에러 이벤트가 발생하는 경우가 있다. The configuration file __MACOSX/eb-node-express-sample-v1.1/.ebextensions/._create-sns-topic.config in application version 1.2 contains invalid YAML or JSON. YAML exception: Invalid Yaml: unacceptable character '�' (0x0) special characters are not allowed in "", position 0, JSON exception: Invalid JSON: Unexpecte..
-
[mac] xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrunComputer/osx 2020. 4. 28. 11:22
맥 OS 업데이트를 하고 나면 git 명령어시 아래와 같은 에러가 발생한다. xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun 이때 다음 명령어를 입력해 해결하면 된다. xcode-select --install
-
[PyTorch] How to run pytorch using conda by linking vscode and jupyter notebook on OSX(mac).AI 2020. 4. 17. 14:26
pytorch로 deeplearning 예제를 로컬(osx)에서 실습해보려고 한다. 에디터는 pycharm을 많이 쓰는거 같던데, 나의 경우 항상 쓰던 vscode를 사용하고자 한다. 예제 소스는 .ipynb 파일로 되어있어서, .py 파일로 변형하지 않고 사용하기 위해 jupyter notebook을 사용하려 한다. 자 그럼 이제 개발 환경을 구축해보자. 1. Install python 3.x 링크 기본적으로 python 3.x를 설치해준다. (설치 과정은 생략..) 2. Install vscode & extensions. VSCODE 그리고 확장 프로그램을 설치한다. 설치가 완료되면 vscode를 재시작 해준다. 3. Install jupyter $ pip3 install --upgrade pip $..