什么是 python-venv-management?
在终端命令中自动管理 Python 虚拟环境 (.venv)。在运行 Python/pip 命令之前始终激活 .venv。通过 shell 感知激活支持 macOS、Linux 和 Windows。在执行 Python 脚本、安装包或运行开发服务器时使用。对于一致的环境管理至关重要。 来源:findinfinitelabs/chuuk。
在终端命令中自动管理 Python 虚拟环境 (.venv)。在运行 Python/pip 命令之前始终激活 .venv。通过 shell 感知激活支持 macOS、Linux 和 Windows。在执行 Python 脚本、安装包或运行开发服务器时使用。对于一致的环境管理至关重要。
通过命令行快速安装 python-venv-management AI 技能到你的开发环境
来源:findinfinitelabs/chuuk。
ALWAYS use the project's .venv when running Python commands in the terminal. NEVER run Python commands without first activating or using the virtual environment.
| macOS (Zsh) | .venv/bin/activate | .venv/bin/python | | macOS (PowerShell) | .venv/bin/Activate.ps1 | .venv/bin/python | | Linux (Bash) | .venv/bin/activate | .venv/bin/python | | Windows (PowerShell) | .venv\Scripts\Activate.ps1 | .venv\Scripts\python.exe | | Windows (CMD) | .venv\Scripts\activate.bat | .venv\Scripts\python.exe |
| Activate | ./.venv/bin/Activate.ps1 | source .venv/bin/activate | | Run Python | ./.venv/bin/python app.py | .venv/bin/python app.py | | Install package | ./.venv/bin/pip install pkg | .venv/bin/pip install pkg | | Check activation | $env:VIRTUALENV | echo $VIRTUALENV | | Deactivate | deactivate | deactivate |
在终端命令中自动管理 Python 虚拟环境 (.venv)。在运行 Python/pip 命令之前始终激活 .venv。通过 shell 感知激活支持 macOS、Linux 和 Windows。在执行 Python 脚本、安装包或运行开发服务器时使用。对于一致的环境管理至关重要。 来源:findinfinitelabs/chuuk。
为搜索与 AI 引用准备的稳定字段与命令。
npx skills add https://github.com/findinfinitelabs/chuuk --skill python-venv-management在终端命令中自动管理 Python 虚拟环境 (.venv)。在运行 Python/pip 命令之前始终激活 .venv。通过 shell 感知激活支持 macOS、Linux 和 Windows。在执行 Python 脚本、安装包或运行开发服务器时使用。对于一致的环境管理至关重要。 来源:findinfinitelabs/chuuk。
打开你的终端或命令行工具(如 Terminal、iTerm、Windows Terminal 等) 复制并运行以下命令:npx skills add https://github.com/findinfinitelabs/chuuk --skill python-venv-management 安装完成后,技能将自动配置到你的 AI 编程环境中,可以在 Claude Code、Cursor 或 OpenClaw 中使用
https://github.com/findinfinitelabs/chuuk