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
- 알고리즘
- aws jupyter notebook
- dataframe
- openCV
- Algorithm
- NumPy
- pandas
- 프로그래머스
- 알고리즘 스터디
- 코딩테스트
- 가상환경
- 자료구조
- Stack
- python
- Matplotlib
- queue
- programmers
- 파이썬
- 선그래프
- 데이터시각화
- javascript
- Join
- String Method
- 백준
- 노마드코딩
- 알고리즘스터디
- 정보처리기사 c언어
- type hint
- Selenium
- MySQL
Archives
- Today
- Total
목록패키지설치 (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