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 | 29 | 30 | 31 |
Tags
- git
- terminal
- gensim
- nlp
- machinelearning
- code
- pip
- computer_setting
- Vim
- Ai
- Stanford
- linux
- seq2seq
- natural_language_processing
- error
- language_model
- text
- Statistics
- install
- Standford
- deeplearning
- paper_review
- computer
- github
- json
- cs224n
- slideshare
- cs231n
- review
- tab
Archives
- Today
- Total
목록gensim (2)
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가 정상 작동된다.