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
- NumPy
- 알고리즘스터디
- 파이썬
- String Method
- python
- aws jupyter notebook
- queue
- type hint
- 백준
- 가상환경
- 정보처리기사 c언어
- Algorithm
- programmers
- pandas
- openCV
- 선그래프
- 코딩테스트
- dataframe
- javascript
- 데이터시각화
- Selenium
- Join
- MySQL
- 프로그래머스
- 자료구조
- Matplotlib
- 알고리즘 스터디
- 노마드코딩
- Stack
- 알고리즘
Archives
- Today
- Total
조금씩 꾸준히 완성을 향해
[Python] 자주쓰는 pip 명령어 정리 본문
▶ pip 설치
$ sudo easy_install pip
▶ pip 버전 확인
$ pip --version
▶ pip 업그레이드
$ pip install pip --upgrade
▶ 패키지 설치
$ pip install 패키지
▶ 특정 버전 패키지 설치
$ pip install "패키지~=3.0.0
▶ 설치된 패키지 확인
$ pip freeze
▶ 설치된 패키지 정보를 requirements.txt 파일로 출력
$ pip freeze > requirements.txt
▶ requirements.txt 파일에 있는 모든 패키지를 설치
$ pip install -r requirements.txt
'Python > 기타' 카테고리의 다른 글
[Google Colab Error] Your session crashed after using all available RAM (0) | 2022.11.20 |
---|---|
VScode 터미널 & 환경변수 에러 / conda 터미널로 변경 (0) | 2022.09.15 |
[Python] venv 가상환경 만들기 (0) | 2022.09.11 |
[Python] Conda 가상환경 만들기 (0) | 2022.09.11 |
VScode 터미널 한글 깨짐 현상 (0) | 2022.09.08 |