[K-Digital Training] 한국경제신문 with toss bank
GitHub: Let’s build from here
GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and fea...
github.com
먼저 GitHub에 로그인한 후, 새로운 Repository를 생성합니다.
복사한 URL을 사용하여 로컬 컴퓨터에 Repository를 클론 합니다.
git clone "복사한_Repositorie_URL"
cd 클론된_폴더명
클론된 폴더 안에 필요한 파일들을 생성합니다.
touch requirements.txt
requirements.txt 의 내용 (메모앱을 이용)
numpy
pandas
matplotlib
seaborn
plotly
scikit-learn
jupyterlab
streamlit
pingouin
scipy
chardet
gdown
xlsxwriter
sqlalchemy
beautifulsoup4
이제 Visual Studio Code (VSCode)를 열어 개발 환경을 설정합니다.
code .
메뉴에서 'Terminal > New Terminal'을 선택합니다.
Python 가상환경을 설정하여 독립된 작업 환경을 만듭니다.
pip install virtualenv
virtualenv venv
source venv/Scripts/activate
which python
pip install -r requirements.txt
jupyter lab
이제 브라우저가 열리면서 Jupyter Lab에서 코드를 작성하고 실행할 수 있는 준비가 완료되었습니다.
랜덤 포레스트 ( Random Forest ) (0) | 2024.08.29 |
---|---|
Git 기본 개념 이해하고 관리하기 (2) | 2024.08.29 |
통계_검정, 상관 분석, 쌍 비교, 회귀 분석, 다변량 분석 (0) | 2024.08.04 |
(_기초_) Machine Learning 이란? (0) | 2024.08.03 |
[K-Digital Training] 한국경제신문 with toss bank (한달 후기) (0) | 2024.07.31 |