2025.12.19
두가지 버전의 script
- python에 바로 jupyter 노트북 실행
- venv로 가상환경 만들고 jupyter 노트북 실행
jupyter.bat
@echo off
:: cd C:\Users\계정\Document\spyvenv2025\Scripts
:: activate.bat
cd C:\Users\계정\Documents
:: Documents\pyvenv2025\Scripts>
:: python -m venv pyvenv2025
python -m notebook
가상환경 만들고 pip install로 패키지 추가
python -m venv pyvenv2025
cd pyvenv2025
dir
dir Scripts
Scripts/activate.bat
cd Scripts
dir
activate.bat
history
cd ..
python -m pip install --upgrade pip
pip install numpy
pip install pandas
pip install scipy
pip install matplotlib
pip install seaborn
pip install statsmodels
pip install scikit-learn
pip install missingno
pip install notebook
jupyter_venv.bat
@echo off
:: Documents\DS3\pyvenv2025\Scripts>
:: python -m venv pyvenv2025
cd C:\Users\fall2\Documents\DS3\pyvenv2025\Scripts
call activate.bat
cd C:\Users\fall2\Documents\DS3
python -m notebook
pause

'읽고보고해봄' 카테고리의 다른 글
| TR074 아두이노와 RPI의 차이 (0) | 2025.12.21 |
|---|---|
| TR073 티스토리에 MathJax 적용 (0) | 2025.12.20 |
| TR069 RPI5 - 라즈비안 설치 (0) | 2025.12.10 |
| TR068 github - workflow 테스트 (0) | 2025.12.07 |
| Matter는 무엇인가? (0) | 2025.06.14 |