Computer Language/Python

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

lejpower 2023. 3. 9. 13:20

pipenv를 이용해서 파이썬을 설치할 때 이러한 에러가 발생할 경우가 있습니다.

 

pipenv install throws -system is intended to beused for pre-existing Pipfile installation


대처방법

pipenv-venv 를 실행하여, 가상환경 목록을 확인하고, 문제가 된 가상환경 경로를 확인합니다.
그리고,  rm-rf ${가상환경_경로} 를 실행해서 관련 디렉토리를 지웁니다.

마지막으로 다시한번 인스톨을 실행합니다.

'Computer Language > Python' 카테고리의 다른 글

pipenv 사용법  (0) 2023.03.09
anaconda & jupyter notebook installation in EC2 with Ubuntu  (0) 2021.11.17
OCR with Tesseract  (0) 2021.11.05