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
- Matplotlib
- Algorithm
- 알고리즘
- Stack
- 알고리즘 스터디
- 자료구조
- 코딩테스트
- queue
- Selenium
- programmers
- Join
- python
- 선그래프
- String Method
- 알고리즘스터디
- 파이썬
- 백준
- javascript
- 데이터시각화
- NumPy
- openCV
- type hint
- aws jupyter notebook
- pandas
- 정보처리기사 c언어
- 노마드코딩
- MySQL
- 프로그래머스
- dataframe
- 가상환경
Archives
- Today
- Total
목록PIP 명령어 (1)
조금씩 꾸준히 완성을 향해
[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/기타
2022. 9. 11. 23:07