写点什么

Python 创建虚拟环境报错:Error: Command......

作者:codists
  • 2024-11-22
    广东
  • 本文字数:367 字

    阅读完需:约 1 分钟

环境说明

  • 系统


# lsb_release -aNo LSB modules are available.Distributor ID: UbuntuDescription:    Ubuntu 22.04.4 LTSRelease:        22.04Codename:       jammy
复制代码


  • Python 版本


# python3 --versionPython 3.13.0
复制代码

问题描述

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


# python3 -m venv venvError: 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)

发布于: 刚刚阅读数: 3
用户头像

codists

关注

公众号:编程人 2021-01-14 加入

Life is short, You need Python

评论

发布
暂无评论
Python创建虚拟环境报错:Error: Command......_Python_codists_InfoQ写作社区