Computer Language/Python 4

[pipenv] pipenv install throws --system is intended to be used for pre-existing Pipfile installation 에러발생 시 대처방안

pipenv를 이용해서 파이썬을 설치할 때 이러한 에러가 발생할 경우가 있습니다. pipenv install throws -system is intended to beused for pre-existing Pipfile installation 대처방법 pipenv-venv 를 실행하여, 가상환경 목록을 확인하고, 문제가 된 가상환경 경로를 확인합니다. 그리고, rm-rf ${가상환경_경로} 를 실행해서 관련 디렉토리를 지웁니다. 마지막으로 다시한번 인스톨을 실행합니다.

pipenv 사용법

pipenv란? pipenv는 Python에서 개발 환경을 구축하는 데 유용한 패키지 관리 도구입니다. npm과 yarn과 같은 패키지 관리 도구의 파이썬 버전과 같습니다. 또한 가상 환경을 구축할 수 있습니다. 가상 환경을 만들면 어떤 이점이 있는가 하면 프로젝트마다 다른 버전의 Python을 사용할 수 있거나 패키지 등도 프로젝트별로 관리할 수 있습니다. pipenv 설치 첫째, pipenv를 설치하는 방법입니다. 이번 pipenv의 설치에는 Homebrew 에서 갑니다. 아직 Homebrew 를 설치 하지 않은 분은, 여기서 다운로드 해주세요. [homebrew] 이제 다음 명령을 실행합니다. $ brew install pipenv 이제 pipenv가 설치 됩니다. 다음 명령 으로 확인해 봅시다. ..

anaconda & jupyter notebook installation in EC2 with Ubuntu

anaconda installer를 다운 받자. 참고 : https://www.anaconda.com/products/individual wget https://repo.continuum.io/archive/Anaconda3-2021.05-Linux-x86_64.sh sh Anaconda3-2021.05-Linux-x86_64.sh # 우분투 기준 vi /etc/bash.bashrc # 맨 마지막에 기술한다! export PATH=/root/anaconda3/bin:$PATH 새로운 아나콘다 가상환경 만들기 conda update --all conda create -n py38 python=3.8.8 conda activate conda install jupyter notebook 설정 파일을 만든다. ..

OCR with Tesseract

테스트용 스탭서버가 우분투 이기 때문에 우분투를 기준으로 테스트 해 보았다. tesseract install sudo apt install tesseract-ocr sudo apt install libtesseract-dev pip install pip install Pillow pip install pytesseract download the trained datafile sudo apt-get install tesseract-ocr-* https://github.com/tesseract-ocr/tessdata GitHub - tesseract-ocr/tessdata: Trained models with support for legacy and LSTM OCR engine Trained models w..