다른 명령
데브카페에서 사용할 수 있는 모든 기록이 표시됩니다. 기록 종류나 사용자 이름(대소문자 구별) 또는 영향을 받는 문서(대소문자 구별)를 선택하여 범위를 좁혀서 살펴볼 수 있습니다.
- 2025년 6월 11일 (수) 00:48 Devcafe 토론 기여님이 Pip 이용 파이썬 라이브러리 설치 문서를 삭제 취소했습니다 (판 10개)
- 2025년 3월 19일 (수) 00:16 Devcafe 토론 기여님이 Pip 이용 파이썬 라이브러리 설치 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Pip 이용 파이썬 라이브러리 설치&action=delete내용: "== pip 파이썬 패키지 설치 == === 패티지 설치 pip install === <source lang=python> pip install [package Name] </source> * 안될때는 python -m 붙여 실행 *:<source lang=python>python -m pip install [package Name]</source> *:예시 pandas 라이브러리를 설치 시 <source lang=python> pip install pandas </source> === 패키지 upgrade === <source lang=python> pip...". 유일한 편집자는 "Devcafe" (토론))
- 2024년 10월 21일 (월) 00:53 Devcafe 토론 기여님이 Pip 이용 파이썬 라이브러리 설치 문서를 만들었습니다 (새 문서: == pip 파이썬 패키지 설치 == === 패티지 설치 pip install === <source lang=python> pip install [package Name] </source> * 안될때는 python -m 붙여 실행 <source lang=python> python -m pip install [package Name] </source> * requests 라이브러리를 설치 시 <source lang=python> pip install requests </source> === 패키지 upgrade === <source lang=python> pip install --upgrade [package Name] </source> === 설치된 패키지 제거 === <source lang=python>...)