2024-11-09发表2024-11-09更新最佳实践1 分钟读完 (大约200个字)Python 开发环境1. Overview Windows WSL ✓ ✓ 2. Windows使用 uv 管理python版本和虚拟环境 2.1. uv123456789101112# Install uvpowershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"# Upgrading uvuv self update# Add shell autocompletionAdd-Content -Path $PROFILE -Value @'# uv(& uv generate-shell-completion powershell) | Out-String | Invoke-Expression'@ 2.2. python阅读更多