게시글
질문&답변
윈도우 환경 pip install langchain-chroma 오류
Visual Studio 개발자 명령 프롬프트에서 설치위 방법으로 해결하였습니다
- 0
- 3
- 353
질문&답변
윈도우 환경 pip install langchain-chroma 오류
아래와 같은 방법으로 해결하였습니다langchain-chroma 오류 해결에러 메시지를 보면 numpy 패키지를 빌드하는 과정에서 Compiler cl cannot compile programs.라는 오류가 발생했습니다. 이는 C 컴파일러(MSVC)가 제대로 설치되지 않았거나 설정되지 않아서 발생하는 문제입니다.해결 방법:1. Microsoft C++ Build Tools 설치LangChain과 ChromaDB 등의 패키지는 종종 C 확장 모듈을 사용하므로, Visual Studio Build Tools가 필요할 수 있습니다.Microsoft C++ Build Tools 다운로드 및 설치Visual Studio Installer에서 "C++ build tools" 선택MSVC v142 - VS 2019 C++ x64/x86 build tools 체크"Windows 10 SDK" 체크설치 후 시스템을 재부팅2. Python 및 Pip 업그레이드powershell복사편집python.exe -m pip install --upgrade pip setuptools wheel이후 다시 시도:powershell복사편집pip install langchain-chroma3. 기존 NumPy 삭제 후 다시 설치powershell복사편집pip uninstall numpypip install --no-cache-dir numpy이후 다시 pip install langchain-chroma 시도.4. CMake 및 Meson 설치numpy가 Meson과 CMake를 사용하는 경우도 있음.powershell복사편집pip install cmake meson ninja이후 다시 pip install langchain-chroma 실행.5. Visual Studio 개발자 명령 프롬프트에서 설치일반 PowerShell이 아니라 "x64 Native Tools Command Prompt for VS 2019/2022"를 실행한 후:powershell복사편집pip install langchain-chroma
- 0
- 3
- 353
질문&답변
stduio 3t 설치 완료후 처음 실행하고 Login진행 시키면 웹 화면에서 계속 멈춰있습니다 더이상 진행도 안됩니다.
브라우저에 쿠키 삭제하여서 해결했습니다.
- 1
- 1
- 243