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
- Python
- YOLO
- LIST
- VS Code
- paramiko
- pip
- 기타 연주
- mysql
- Selenium
- C#
- 컨테이너
- ubuntu
- Visual Studio
- error
- pytorch
- C
- 프로그래머스
- SSH
- 채보
- Docker
- OpenCV
- Linux
- JSON
- C++
- label
- 오류
- pandas
- 핑거스타일
- Numpy
- windows forms
Archives
- Today
- Total
목록pip (4)
기계는 거짓말하지 않는다
error: uninstall-distutils-installed-package
Ubuntu에서 pip를 이용하여 Flask를 설치할 때, 아래와 같은 오류가 발생했다.distutils는 초기 Python 패키지를 빌드하고 설치하는 도구이며,Python이 최근 버전이면 distutils는 더 이상 사용되지 않고, setuptools와 pip를 사용한다.Installing collected packages: blinker Attempting uninstall: blinker Found existing installation: blinker 1.4error: uninstall-distutils-installed-package× Cannot uninstall blinker 1.4╰─> It is a distutils installed project and thus we cannot..
Linux
2025. 1. 8. 22:51
Python pip를 이용하여 설치된 패키지(package) 업그레이드(upgrade)
Python pip를 이용하여 설치된 package를 업그레이드하는 방법이다.pip install --upgradepip install -U# ex) pip install numpy --upgrade
Python
2024. 6. 4. 22:18
Python pip 패키지 목록 requirements.txt 생성, 설치
Python pip list 명령어의 결과를 requirements.txt 파일로 생성하는 방법은 아래와 같다. pip freeze > requirements.txt 생성된 requirements.txt를 이용하여 패키지를 설치하는 방법은 다음과 같다. pip install -r requirements.txt
Python
2024. 2. 9. 21:10