Develop in win11 by Arno
- Create virtual environment
python -m venv .venv- Activate virtual environment
| Platform | Shell | Command to activate virtual environment |
|---|---|---|
| POSIX | bash/zsh | source .venv/bin/activate |
| fish | source .venv/bin/activate.fish |
|
| csh/tcsh | source .venv/bin/activate.csh |
|
| PowerShell | .venv/bin/Activate.ps1 |
|
| Windows | cmd.exe | .venv\Scripts\activate.bat |
| PowerShell | .venv\\Scripts\Activate.ps1 |
- Install
poetryand use it to install dependencies
pip install poetry
poetry install- Build html
.\docs\make html