Conda 패키지 관리
04/03/2022
#!/bin/bash
conda
#conda create -n env_name -y python=version
#source /opt/homebrew/Caskroom/miniconda/base/etc/profile.d/conda.sh
#conda activate env_name
kernel
#conda install -c conda-forge -y ipykernel
#python -m ipykernel install --user --name env_name --display-name "kernel_name"
jupyter notebook
#conda install -c conda-forge -y jupyter
#conda install -c conda-forge -y jupyterthemes
#jt -t oceans16 -cellw 95% -N -kl -altmd -cursw 2.5 -lineh 160 -T
#conda install -c conda-forge -y jupyter_contrib_nbextensions
#conda install -c conda-forge -y autopep8
jupyterlab
#conda install -c conda-forge -y jupyterlab
#conda install -n class -c conda-forge -y jupyterlab_widgets
#conda install -n class -c conda-forge -y ipywidgets
openpyxl
#conda install -c conda-forge -y openpyxl
pandas
#conda install -c conda-forge -y pandas
#conda install -c conda-forge -y pandas-profiling
#python -m pip install pandas-profiling
#conda install -c conda-forge -y phik
#conda install -c conda-forge -y numpy
시각화
#conda install -c conda-forge -y seaborn
# Mac - seaborn에서 폰트 깨짐 방지
# sns.set(font="AppleGothic")
#conda install -c conda-forge -y matplotlib
missingno 결측치 시각화
#conda install -c conda-forge -y missingno
#conda install -c conda-forge -y python-graphviz # 그래프 시각화
#conda install -c conda-forge -y shap
ML/DL 관련
tensorflow: 머신 러닝 오픈소스 라이브러리
#conda install -c conda-forge -y tensorflow
keras: 텐서플로우에 대한 추상화 된 API를 제공, 백엔드로 텐서플로우를 사용, 쉽게 말해, 텐서플로우 코드를 훨씬 간단하게 작성할 수 있게함
#conda install -c conda-forge -y keras
gensim: 머신 러닝을 사용하여 토픽 모델링과 자연어 처리 등을 수행할 수 있게 해주는 오픈 소스 라이브러리
#conda install -c conda-forge -y gensim
scikit-learn: 파이썬 머신러닝 라이브러리
#conda install -c conda-forge -y scikit-learn
xgboost - 트리 분할 방법의 앙상블 학습 알고리즘 라이브러리
#conda install -c conda-forge -y xgboost
LightGBM - 리프 중심 트리 분할(Leaf Wise) 방식 앙상블 학습 알고리즘 라이브러리
#conda install -c conda-forge -y lightgbm
대용량 데이터 다루기
#conda install -c conda-forge -y pyarrow
하이퍼파라미터 최적화
#conda install -c conda-forge -y optuna
자연어 처리
#conda install -c conda-forge -y nltk
konlpy
#pip install konlpy
Mecab
#curl -s https://raw.githubusercontent.com/konlpy/konlpy/master/scripts/mecab.sh | bash -s
#KSS
#pip install kss
한국어 전처리 패키지(Text Preprocessing Tools for Korean Text)
PyKoSpacing 문장을 띄어쓰기를 한 문장으로 변환해주는 패키지
#pip install git+https://github.com/haven-jeon/PyKoSpacing.git
Py-Hanspell 네이버 한글 맞춤법 검사기를 바탕으로 만들어진 패키지
#pip install git+https://github.com/ssut/py-hanspell.git
SOYNLP
#pip install soynlp
Customized KoNLPy
#pip install customized_konlpy
jpype1 : connecting python and java
#conda install -c conda-forge -y jpype1
Exit 0
Author And Source
이 문제에 관하여(Conda 패키지 관리), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@zivary/Conda-패키지-관리저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)