최대 1 분 소요

Install Scoop

iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
  • Note: if you get an error you might need to change the execution policy (i.e. enable Powershell) with Set-ExecutionPolicy RemoteSigned -scope CurrentUser

  • 설치 방법 한글

More Detail

Install Python 3

scoop install python

Upgrade pip

python3 -m pip install --upgrade pip

Create directory structure for Jupyter Notebooks

  • Note: feel free to change the path anything you want
mkdir C:\Projects\Jupyter\Notebooks
cd C:\Projects\Jupyter\Notebooks

Install pipenv

python3 -m pip install pipenv
pipenv --python 3.7

Install Jupyter Notebooks

pipenv install jupyterlab
  • Note: feel free to add/change any package you want or need
pipenv install pandas numpy matplotlib seaborn sklearn

Run Jupyter Notebooks

  • Note: you need the line below anytime you want to run Jupyter Notebooks
pipenv run jupyter lab

ETC. Set up Linux on Windows

launch powershell
wsl --install

Reference

Ergin BULU - gist.github.com/ergin