一键导入
python-venv
Python virtual environments and dependencies. Use when creating venv, installing packages, running scripts, or fixing path/activation issues.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Python virtual environments and dependencies. Use when creating venv, installing packages, running scripts, or fixing path/activation issues.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Git commit messages and workflow. Use when writing commit messages, creating branches, or discussing PR/rebase/squash workflow.
README and project documentation structure. Use when writing or updating README.md, docs, or project overview.
Environment variables and secrets. Use when handling API keys, .env, .gitignore, or avoiding hardcoded secrets.
TypeScript and React best practices. Use when writing or refactoring .ts/.tsx files, React components, hooks, or type definitions.
Best practices for Remotion - Video creation in React
| name | python-venv |
| description | Python virtual environments and dependencies. Use when creating venv, installing packages, running scripts, or fixing path/activation issues. |
| metadata | {"tags":"python, venv, pip, dependencies"} |
python -m venv .venv.\.venv\Scripts\Activate.ps1 或 & .\.venv\Scripts\Activate.ps1.\.venv\Scripts\activate.batpip install -r requirements.txt 或 pip install <pkg>pip freeze > requirements.txt.venv,且通过 nodeenv 在同一 .venv 中安装 Node,故 node/npm 位于 .venv\Scripts\npm 时,若遇 “node 找不到”,先确保 PATH 含项目 .venv\Scripts:$env:PATH = "项目根\.venv\Scripts;" + $env:PATH