ERROR pyenv를 설치했지만 최근(2025년 이후) 'pyenv update' 명령어로 파이썬 버전 목록 갱신이 제대로 동작하지 않습니다. 아래처럼 오류가 발생합니다. 조치방법 https://g…
uv로 .venv 환경에 python 을 설치하다 보면 --seed 옵션을 빼고 설치했을 때 pip 모듈이 설치가 되지 않습니다. 이 때는 아래 명령어가 동작하지 않습니다. 'python -m pip …
uv install # On Windows. powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex&quo…
이 방식을 사용하면: sys_platform == 'win32' 조건이 있는 패키지는 Windows 환경에서만 설치됩니다. sys_platform == 'linux' 조건이 있는 패…
Local 실행할 때는 문제없던 앱이 pyinstaller 로 변환하고 나면 에러가 발생한다. Failed to convert files: Error converting test.docx: docx2pdf …
https://pypi.org/project/python-dotenv/ python-dotenv Read key-value pairs from a .env file and set them as environ…
HTML을 크롤링을 하는데, 내용이 보이지 않고, "Response 200" 이라고만 출력이 된다 HTTP의 상태코드를 보면 200번은 정상적으로 크롤링이 된 것을 알려주는 번호이다. 20…