Anaconda 3

PyCharm에서 anaconda 가상환경 구축하기

https://docs.anaconda.com/free/anaconda/ide-tutorials/pycharm/ Using PyCharm — Anaconda documentation Using PyCharm PyCharm is an IDE that integrates with IPython Notebook, has an interactive Python console, and supports Anaconda as well as multiple scientific packages. PyCharm also supports creating virtual environments for Python with conda. This topic w docs.anaconda.com 제 글을 읽지않고, 위의 공식문서를 바..

Programming/python 2023.11.17

TqdmWarning: IProgress not found. 에러 해결방법 (Anaconda, Jupyter Lab / Notebook)

Conda에 Jupyter 조합을 쓰는사람에게 자주 발생하는 에러라고 한다. [해결 방법] 1) Jupyter lab / notebook 종료한 상태에서 Terminal or Anaconda Prompt 접속 2) (base)상태에서 아래의 커맨드로 jupyterlab_widgets 설치 3) (base)상태에서 아래의 두번째 커맨드로 ipywidgets 설치 - your_environment 부분에 본인의 가상환경 이름을 넣기! conda install -n base -c conda-forge jupyterlab_widgets conda install -n your_environment -c conda-forge ipywidgets 4) 터미널 종료하고 다시 재실행하면 에러가 발생하지 않음

Programming/errors 2022.10.21

Anaconda 외워두면 좋을 필수 명령어 모음 (가상환경 생성, 라이브러리 설치 및 관리 방법)

# 가상환경 conda create -n [가상환경이름] python=x.x # 가상환경 생성 conda info --envs # 생성된 가상환경 리스트 conda activate [가상환경이름] # 가상환경 활성화 conda deactivate # 가상환경 비활성화 conda remove -n 가상환경이름 --all # 가상환경 삭제 virtual_env.yaml"}">conda env export > virtual_env.yaml # 가상환경을 .yaml 파일로 내보내서 저장 conda create -n [복사된_가상환경이름] --clone [복사할_가상환경이름] # 가상환경 클론 생성 anaconda prompt 가상환경 - 라이브러리 설치 requirements.txt "}">pip freeze ..