install scoop

1
2
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression

update scoop

1
scoop update 

install pyenv

1
scoop install pyenv

setup python

install python with pyenv

1
2
3
pyenv install 3.10.0

pyenv local 3.10.0

install poetry

1
pip install poetry

configure poetry in: %APPDATA%\pypoetry

1
2
3
4
[virtualenvs]
in-project = true
virtualenvs.prefer-active-python = true
prefer-active-python = true

install jupyter

1
pip install jupyterlab 

install ipython

1
pip install ipykernel