Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- json
- machinelearning
- slideshare
- Stanford
- error
- paper_review
- gensim
- natural_language_processing
- terminal
- Vim
- git
- text
- Standford
- pip
- install
- deeplearning
- cs224n
- Statistics
- github
- computer_setting
- nlp
- Ai
- seq2seq
- code
- language_model
- tab
- cs231n
- linux
- review
- computer
Archives
- Today
- Total
NLP/AI/Statistics
ModuleNotFoundError: No module named 'pip' 본문
gensim 설치를 위해서는 아래의 코드를 실행시키면 된다.
$ pip install --upgrade gensim
이렇게 gensim을 설치하려고 하는데 갑자기 pip 에러가 발생했다.
에러는 ModuleNotFoundError: No module named 'pip'.
pip를 다시 설치하는 방식으로 문제를 해결했다.
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$ python get-pip.py
위의 코드를 실행시키면 pip가 정상 작동된다.
'Computer Setting > Error' 카테고리의 다른 글
gdb - segmentation fault (core dumped) debugging (0) | 2021.06.07 |
---|---|
bash: pip3: command not found (3) | 2021.06.07 |
pip locale error: unsupported locale setting 에러 (0) | 2020.10.22 |
Comments