반응형
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
- PySpark
- Github
- numpy
- list
- array
- Google Spreadsheet
- 파이썬
- google apps script
- Kotlin
- SQL
- string
- Java
- gas
- Tkinter
- math
- Mac
- django
- Google Excel
- matplotlib
- Apache
- Excel
- Redshift
- c#
- hive
- PostgreSQL
- dataframe
- PANDAS
- Python
- GIT
Archives
- Today
- Total
달나라 노트
Python Basic : pip uninstall (Python 모듈 삭제. Python 라이브러리 삭제.) 본문
Python/Python Basic
Python Basic : pip uninstall (Python 모듈 삭제. Python 라이브러리 삭제.)
CosmosProject 2022. 2. 10. 20:35728x90
반응형
아래 명령어를 이용하면 설치된 Python library를 삭제할 수 있습니다.
pip uninstall module_name
만약 anaconda interpreter를 사용하고 있고 conda에 설치된 module을 삭제하고 싶다면 아래 명령어를 사용하면 됩니다.
conda remove module_name
pip uninstall pandas
conda remove numpy
예를 들면 위와 같습니다.
728x90
반응형
'Python > Python Basic' 카테고리의 다른 글
Comments