Mac
-
[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
-
[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 $..