Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Python

install

# Windows 10
scoop install python310

Personal do

python -m pip install pipx
pipx ensurepath

Publish python package

1

python -m pip install -e .
python -m pip install build twine
python setup.py sdist bdist_wheel
python -m build

reference


  1. How to Publish an Open-Source Python Package to PyPI