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 |
Tags
- terminal
- paper_review
- deeplearning
- machinelearning
- tab
- natural_language_processing
- install
- computer
- linux
- Statistics
- nlp
- slideshare
- code
- computer_setting
- Stanford
- gensim
- json
- text
- error
- language_model
- git
- seq2seq
- github
- pip
- Vim
- cs231n
- review
- cs224n
- Ai
- Standford
Archives
- Today
- Total
목록gensim (2)
NLP/AI/Statistics

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가 정상 작동된다.