Tools: Use built-in venv instead of virtualenv for creating Python environments

This commit is contained in:
Roland Dobai
2022-05-25 15:06:13 +02:00
committed by BOT
parent c0a045793f
commit ed795c86df
4 changed files with 64 additions and 54 deletions

View File

@@ -34,17 +34,17 @@ Linux 用户
- Ubuntu 和 Debian::
sudo apt-get install git wget flex bison gperf python3 python3-pip python3-setuptools cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0
sudo apt-get install git wget flex bison gperf python3 python3-venv python3-setuptools cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0
- CentOS 7 & 8::
sudo yum -y update && sudo yum install git wget flex bison gperf python3 python3-pip python3-setuptools cmake ninja-build ccache dfu-util libusbx
sudo yum -y update && sudo yum install git wget flex bison gperf python3 python3-setuptools cmake ninja-build ccache dfu-util libusbx
目前仍然支持 CentOS 7但为了更好的用户体验建议使用 CentOS 8。
- Arch::
sudo pacman -S --needed gcc git make flex bison gperf python-pip cmake ninja ccache dfu-util libusb
sudo pacman -S --needed gcc git make flex bison gperf python cmake ninja ccache dfu-util libusb
.. note::
- 使用 ESP-IDF 需要 CMake 3.5 或以上版本。较早的 Linux 发行版可能需要升级自身的软件源仓库,或开启 backports 套件库,或安装 "cmake3" 软件包(不是安装 "cmake")。
@@ -55,10 +55,6 @@ macOS 用户
ESP-IDF 将使用 macOS 上默认安装的 Python 版本。
- 安装 pip::
sudo easy_install pip
- 安装 CMake 和 Ninja 编译工具:
- 若有 HomeBrew_您可以运行::