环境说明

  • 系统
# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 22.04.4 LTS
Release:        22.04
Codename:       jammy
  • Python版本
# python3 --version
Python 3.13.0

问题描述

使用 venv 创建名为 venv 的虚拟环境的时候报错:

# python3 -m venv venv
Error: Command '['/root/venv/bin/python3', '-m', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1.

原因分析

出现该错误的原因为 Python 对应版本的 venv(如: Python3.13-venv) 未安装。

解决方法

  • 安装 Python 对应版本的 venv
# sudo apt install python3.13-venv
  • 验证
# python3 -m venv venv
# source venv/bin/activate
# deactivate

经过验证,安装 Python 对应版本的 venv 后,虚拟环境可以正常创建、激活、关闭。

欢迎搜索及关注:编程人(a_codists)


codists
4 声望2 粉丝

Life is short, You need Python