gpt와 streamlit을 활용해 웹 사이트를 만들어보고 있는 도중
googletrans 설치가 제대로 되지 않아 이런 에러가 발생
pip install googletrans
pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
langsmith 0.1.123 requires httpx<1,>=0.23.0, but you have httpx 0.13.3 which is incompatible.
openai 1.46.0 requires httpx<1,>=0.23.0, but you have httpx 0.13.3 which is incompatible.
3.0.0 버전은 문제가 있다고 한다
기존에 설치한 langchain, openai쪽 라이브러리와 요구하는 스펙이 다른 것 같다
pip install googletrans==4.0.0rc1
- 설치해주자