반응형
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
- Mac
- c#
- PySpark
- gas
- numpy
- PANDAS
- 파이썬
- matplotlib
- google apps script
- hive
- Google Excel
- math
- Kotlin
- array
- Github
- Tkinter
- SQL
- django
- PostgreSQL
- GIT
- Apache
- Python
- Excel
- Java
- Redshift
- dataframe
- list
- Google Spreadsheet
- string
Archives
- Today
- Total
달나라 노트
Python anaconda : anaconda python terminal commands 본문
Python/Python ETC
Python anaconda : anaconda python terminal commands
CosmosProject 2022. 2. 11. 01:53728x90
반응형
anaconda python을 사용할 때 Mac terminal에서 사용할 수 있는 여러 가지 command를 알아보겠습니다.
conda --version
anaconda interpreter의 version을 출력해줍니다.
conda list
anaconda에 설치된 python library 종류와 각 library의 version 정보를 출력해줍니다.
(pip list와 비슷합니다.)
conda install library_name
conda install -c conda-forge libary_name
conda install은 원하는 python library를 설치해줍니다.
pip install ~~과 비슷합니다.
conda install에 -c conda-forge라는 옵션을 붙인 command는 conda install을 사용했을 때 에러가 발생했을 때 사용해보시면 됩니다.
conda-forge는 anaconda에서 믿을만한 python library들을 모아둔 공간이라고 보시면 되고 그 공간에서 library를 다운로드 받는 것입니다.
conda update library_name
어떤 library를 최신 버전으로 update해줍니다.
conda remove library_name
설치된 library를 삭제해줍니다.
728x90
반응형
'Python > Python ETC' 카테고리의 다른 글
Pycharm : Pycharm 줄바꿈, 자동 줄바꿈, soft wrap (0) | 2022.02.11 |
---|---|
Pycharm : 천단위 언더바 해제, 천단위 underscore 해제 (0) | 2022.02.11 |
Pycharm : commit view 조절, Pycharm commit code diff view (0) | 2022.02.11 |
Python psycopg2 : Error: pg_config executable not found (psycopg2 설치 에러) (0) | 2022.02.10 |
Python pyhive : access hive and run query using python, python으로 hive query 돌리기 (0) | 2022.01.20 |
Comments