MacOS 환경에서 brew로 poetry install을 하여 1.6.1 -> 1.7.1 버전 업그레이드를 했을때 문제가 발생했다. poetry쪽 문제는 아니고 brew쪽의 문제인듯?
brew install python-platformdirs 로 설치해주라는 해결 방법을 찾았다.
wibaek@Wibaeks-MacBook-Air ~ % brew install python-platformdirs
Warning: python-platformdirs 4.2.0 is already installed, it's just not linked.
To link this version, run:
brew link python-platformdirs
실행 해보니 이미 존재하고 link를 해달라 했고,
wibaek@Wibaeks-MacBook-Air ~ % brew link python-platformdirs
Linking /opt/homebrew/Cellar/python-platformdirs/4.2.0...
Error: Could not symlink lib/python3.11/site-packages/platformdirs/__init__.py
Target /opt/homebrew/lib/python3.11/site-packages/platformdirs/__init__.py
already exists. You may want to remove it:
rm '/opt/homebrew/lib/python3.11/site-packages/platformdirs/__init__.py'
To force the link and overwrite all conflicting files:
brew link --overwrite python-platformdirs
To list all files that would be deleted:
brew link --overwrite --dry-run python-platformdirs
링크중 오류 발생했고 뭔가 많이 쌓인것 같아 그냥 force overwrite 했다.
wibaek@Wibaeks-MacBook-Air ~ % brew link --overwrite python-platformdirs
Linking /opt/homebrew/Cellar/python-platformdirs/4.2.0... 32 symlinks created.
이후 문제 해결.
https://github.com/python-poetry/poetry/issues/8853
'Troubleshooting' 카테고리의 다른 글
MacOS Github organization repository 접근 오류 remote: Repository not found. 해결기 (0) | 2024.04.01 |
---|---|
카카오 소셜 로그인시 카카오톡 내부에서 브라우저가 켜지는 오류 (0) | 2024.02.09 |
DRF production에서 정상작동 하는데 test 통과 안되는 문제 (0) | 2023.09.21 |
장고 https적용시 CSRF에러 (0) | 2023.09.04 |
230818 Gunicorn [CRITICAL] WORKER TIMEOUT 오류 (0) | 2023.08.18 |