Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-6g2r1v6o/gensim/
pip install -r requirements.txt
위의 명령어로 설치된 패키지 목록인 requirements.txt 을 생성하는 도중 다음과 같은 에러가 나왔다.
setuptools 버전이 낮아서 발생한 오류로 pip3 install --upgrade setuptools 로 해결했다.
sudo -H pip install --upgrade --ignore-installed pip setuptools
apt-get install -y python3.6-dev libmysqlclient-dev
반응형
'프로그래밍 언어 > Python' 카테고리의 다른 글
pip install *.whl is not a supported wheel on this platform (0) | 2022.01.07 |
---|---|
파이썬 설치 경로 찾기 (0) | 2022.01.06 |
[python] Please use the NLTK Downloader to obtain the resource (0) | 2021.11.26 |
파이썬에서 dataframe to postgresql 저장하기 (0) | 2021.11.21 |
리눅스에서 파이썬 가상환경 만들기 (0) | 2021.11.18 |