Warn when `venv` target directory already contains an environment
未關閉
還沒有人認領這個 Issue。
stdlib
topic-venv
type-feature
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 36k
- PR 合併指標
- PR 指標待擷取
描述
Feature or enhancement
Proposal:
When a user runs:
python -m venv myenv
and the directory already contains a virtual environment, Python silently performs no action. This behavior can be confusing, as the user receives no indication that the command had no effect.
I propose that venv should display a simple warning when it detects an existing virtual environment so the user knows the operation didn’t make any changes.
Example of the suggested output:
$ python -m venv myenv
Existing virtual environment found at 'myenv'.
No changes were made.
Use '--clear' to recreate this environment.
This provides clarity while keeping behavior backward-compatible. Users who want to recreate the environment can explicitly use --clear.
Has this already been discussed elsewhere?
No response given
Links to previous discussion of this feature:
No response
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
從 python -m venv 進入點開始,比較目標目錄已經包含環境時的行為。驗證現有的 --clear 選項如何改變該行為。當現有環境產生提議的警告並回報未進行任何變更,同時明確清除仍然可用時,即視為完成。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- cli
- Issue 類型
- 功能
- 難度
- 3/5
- 預估耗時
- 1-2 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 42/100