[아나콘다] 프롬프트 명령어 정리

2021. 11. 27. 11:13카테고리 없음

728x90

1. 가상환경 목록 확인

conda env list

2. 콘다 업데이트

conda update conda

3. 아나콘다 업데이트

conda update anaconda

4. 가상환경 생성

conda create -n create_name [python=3,etc..]

5. 가상환경 활성화

conda activate activate_name

6. 가상환경 비활성화

conda deactivate

7. 가상환경 삭제

conda env remove -n remove_name

8. 패키지 설치

conda install package_name

9. 가상환경에 설치된 패키지 리스트 보기

conda list

10. 사용 안하는 패키지 정리(캐쉬 삭제)

conda clean -a

11. 패키지 버전들 보기

conda search package_name

12. 상세정보

conda info

boto3 설치

conda install -c anaconda boto3

참고 : Boto3 :: Anaconda.org

 

beautifulsoup4 설치

conda install -c anaconda beautifulsoup4

참고 : Beautifulsoup4 :: Anaconda.org

 

tesseract 설치

conda install -c conda-forge tesseract

참고 : https://anaconda.org/conda-forge/tesseract

 

pytesseract 설치

conda install -c conda-forge pytesseract

참고 : https://anaconda.org/conda-forge/pytesseract

 

webdriver-manager 설치

conda install -c conda-forge webdriver-manager