Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- ChatGPT
- 프로그래머스
- SW Expert Academy
- 파이썬
- 백준
- Real or Not? NLP with Disaster Tweets
- gs25
- 더현대서울 맛집
- 편스토랑
- 프로그래머스 파이썬
- 데이콘
- 캐치카페
- ubuntu
- 편스토랑 우승상품
- programmers
- AI 경진대회
- 자연어처리
- Docker
- Kaggle
- 코로나19
- hackerrank
- dacon
- 금융문자분석경진대회
- Baekjoon
- github
- 맥북
- Git
- 우분투
- leetcode
- PYTHON
Archives
- Today
- Total
솜씨좋은장씨
[Python] ModuleNotFoundError: No module named 'pip._internal.cli' 해결 방법 본문
Programming/Python
[Python] ModuleNotFoundError: No module named 'pip._internal.cli' 해결 방법
솜씨좋은장씨 2022. 6. 3. 15:57728x90
반응형
👨🏻💻 발생 에러
평소에 잘 사용하던 가상환경에서 pandas 라이브러리가 필요하여
$ pip install pandas
pip 명령어를 통해 설치를 하려고 하였는데
Traceback (most recent call last):
File "/Users/donghyunjang/anaconda3/bin/pip", line 5, in <module>
from pip._internal.cli.main import main
ModuleNotFoundError: No module named 'pip._internal.cli'
위와 같이 ModuleNotFoundError: No module named 'pip._internal.cli' 에러가 발생하였습니다.
👨🏻💻 원인
원인은 정확하지는 않지만 보통 이전에 설치되어있던 버전을 업그레이드 하다가 발생한다고 합니다.
버전 업그레이드 시 기존 버전 삭제 -> 새로운 버전 설치 로 진행하는데 새로운 버전 설치 때
정상적으로 설치가 되지 않은 경우에 그럴 수 있다고 합니다.
👨🏻💻 해결 방법
해결 방법은 생각보다 단순했습니다. pip 재설치!
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
먼저 위의 명령어를 활용하여 get-pip.py 파일을 다운로드 받습니다.
$ python get-pip.py
그 다음 이 파일을 실행하면!
Collecting pip
Downloading pip-22.1.2-py3-none-any.whl (2.1 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 12.5 MB/s eta 0:00:0000:0100:01
Collecting wheel
Using cached wheel-0.37.1-py2.py3-none-any.whl (35 kB)
Installing collected packages: wheel, pip
WARNING: The script wheel is installed in '/Users/donghyunjang/PythonHome/codingtest/hwp_test_env/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Attempting uninstall: pip
Found existing installation: pip 10.0.1
Uninstalling pip-10.0.1:
Successfully uninstalled pip-10.0.1
WARNING: The scripts pip, pip3, pip3.10 and pip3.7 are installed in '/Users/donghyunjang/PythonHome/codingtest/hwp_test_env/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed pip-22.1.2 wheel-0.37.1
위와 같이 pip 가 다시 설치 됩니다.
이러면 끝!
$ pip install pandas
이제 다시 아까 시도했던 pandas 설치를 진행해보면
Collecting pandas
Downloading pandas-1.3.5-cp37-cp37m-macosx_10_9_x86_64.whl (11.0 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.0/11.0 MB 2.9 MB/s eta 0:00:0000:0100:01
Collecting pytz>=2017.3
Using cached pytz-2022.1-py2.py3-none-any.whl (503 kB)
Requirement already satisfied: python-dateutil>=2.7.3 in ./codingtest/hwp_test_env/lib/python3.7/site-packages (from pandas) (2.8.2)
Collecting numpy>=1.17.3
Using cached numpy-1.21.6-cp37-cp37m-macosx_10_9_x86_64.whl (16.9 MB)
Requirement already satisfied: six>=1.5 in ./codingtest/hwp_test_env/lib/python3.7/site-packages (from python-dateutil>=2.7.3->pandas) (1.16.0)
Installing collected packages: pytz, numpy, pandas
WARNING: The scripts f2py, f2py3 and f2py3.7 are installed in '/Users/donghyunjang/PythonHome/codingtest/hwp_test_env/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed numpy-1.21.6 pandas-1.3.5 pytz-2022.1
위와 같이 문제없이 설치가 잘 진행되는 것을 확인할 수 있습니다.
읽어주셔서 감사합니다.
'Programming > Python' 카테고리의 다른 글
Comments