Development/Python
[python] pip install TypeError: expected str, bytes or os.PathLike object, not int
shuka
2023. 1. 4. 07:55
728x90
728x90
TypeError: expected str, bytes or os.PathLike object, not int
Problem
local환경에서 python3.9를 설치하고, python3-pip을 설치했더니 pip install을 할 때마다 밑에와 같은 에러가 발생했다.
TypeError: expected str, bytes or os.PathLike object, not int
Solution
이런 저런 방법이 있겠지만 내 경우는 설치했던 python3-pip을 제거하고 get-pip.py를 받아서 설치했더니 해결됐다.
wget https://bootstrap.pypa.io/get-pip.py
python get-pip.py
728x90
반응형