2019-10-10 04:52:07 -04:00
|
|
|
|
*********************************************
|
2018-02-03 16:12:13 -05:00
|
|
|
|
Linux 平台工具链的标准设置
|
2019-10-10 04:52:07 -04:00
|
|
|
|
*********************************************
|
2018-02-03 16:12:13 -05:00
|
|
|
|
|
2019-10-10 04:52:07 -04:00
|
|
|
|
:link_to_translation:`en:[English]`
|
2018-05-03 00:22:35 -04:00
|
|
|
|
|
2019-10-10 04:52:07 -04:00
|
|
|
|
安装准备
|
2018-02-03 16:12:13 -05:00
|
|
|
|
=====================
|
|
|
|
|
|
|
|
|
|
编译 ESP-IDF 需要以下软件包:
|
|
|
|
|
|
|
|
|
|
- CentOS 7::
|
|
|
|
|
|
2020-11-30 07:11:36 -05:00
|
|
|
|
sudo yum -y update && sudo yum install git wget flex bison gperf python3 cmake ninja-build ccache dfu-util
|
|
|
|
|
|
|
|
|
|
目前仍然支持 CentOS 7,但为了更好的用户体验,建议使用 CentOS 8。
|
2018-02-03 16:12:13 -05:00
|
|
|
|
|
2019-06-24 21:26:53 -04:00
|
|
|
|
- Ubuntu 和 Debian::
|
2018-02-03 16:12:13 -05:00
|
|
|
|
|
2020-11-30 07:11:36 -05:00
|
|
|
|
sudo apt-get install git wget flex bison gperf python3 python3-pip python3-setuptools cmake ninja-build ccache libffi-dev libssl-dev dfu-util
|
2018-02-03 16:12:13 -05:00
|
|
|
|
|
|
|
|
|
- Arch::
|
|
|
|
|
|
2020-11-30 05:06:05 -05:00
|
|
|
|
sudo pacman -S --needed gcc git make flex bison gperf python-pip cmake ninja ccache dfu-util
|
2018-02-03 16:12:13 -05:00
|
|
|
|
|
2020-11-30 05:06:05 -05:00
|
|
|
|
.. 注解::
|
|
|
|
|
使用 ESP-IDF 需要 CMake 3.5 或以上版本。较早的 Linux 发行版可能需要升级自身的软件源仓库,或开启 backports 套件库,或安装 "cmake3" 软件包(不是安装 "cmake")。
|
2018-08-15 22:31:04 -04:00
|
|
|
|
|
2019-10-10 04:52:07 -04:00
|
|
|
|
其他提示
|
|
|
|
|
===============
|
2019-06-24 21:26:53 -04:00
|
|
|
|
|
2018-02-03 16:12:13 -05:00
|
|
|
|
权限问题 /dev/ttyUSB0
|
2019-10-10 04:52:07 -04:00
|
|
|
|
------------------------------------------------------------
|
|
|
|
|
|
2020-11-30 05:06:05 -05:00
|
|
|
|
使用某些 Linux 版本向 {IDF_TARGET_NAME} 烧录固件时,可能会出现 ``Failed to open port /dev/ttyUSB0`` 错误消息。此时可以将用户添加至 :ref:`Linux Dialout 组<linux-dialout-group>`。
|
2018-02-03 16:12:13 -05:00
|
|
|
|
|
2020-11-30 07:11:36 -05:00
|
|
|
|
设置 Python 3 为 CentOS 默认 Python 版本
|
|
|
|
|
----------------------------------------------------
|
|
|
|
|
|
|
|
|
|
CentOS 7 及更早的版本提供 Python 2.7 作为默认解释器。但这里推荐使用 Python 3,您可以运行下方命令安装 Python 3。或者查看当前所用系统的相关文档,按照文档推荐的其它方法安装 Python 3::
|
|
|
|
|
|
|
|
|
|
sudo yum -y update && sudo yum install python3 python3-pip python3-setuptools
|
|
|
|
|
|
|
|
|
|
设置 Python 3 为默认 Python 版本::
|
|
|
|
|
|
|
|
|
|
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 10 && alias pip=pip3
|
|
|
|
|
|
|
|
|
|
|
2020-08-11 08:43:31 -04:00
|
|
|
|
设置 Python 3 为 Ubuntu 和 Debian 默认 Python 版本
|
|
|
|
|
----------------------------------------------------
|
|
|
|
|
|
2020-11-30 07:11:36 -05:00
|
|
|
|
Ubuntu(v18.04 及之前的版本)和 Debian(v9 及之前的版本)的默认解释器为 Python 2.7,但这里推荐使用 Python 3,您可以运行下方命令安装 Python 3。或者查看当前所用系统的相关文档,按照文档推荐的其它方法安装 Python 3::
|
2020-08-11 08:43:31 -04:00
|
|
|
|
|
|
|
|
|
sudo apt-get install python3 python3-pip python3-setuptools
|
|
|
|
|
|
|
|
|
|
设置 Python 3 为默认 Python 版本::
|
|
|
|
|
|
2020-11-30 07:11:36 -05:00
|
|
|
|
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 10 && alias pip=pip3
|
2020-08-11 08:43:31 -04:00
|
|
|
|
|
2020-11-30 05:06:05 -05:00
|
|
|
|
.. 注解::
|
2020-08-11 08:43:31 -04:00
|
|
|
|
上述设置为全局设置,同时会影响到其它应用。
|
|
|
|
|
|
2020-11-30 07:11:36 -05:00
|
|
|
|
|
|
|
|
|
修复 Ubuntu 16.04 损坏的 pip
|
|
|
|
|
=================================
|
|
|
|
|
|
|
|
|
|
``python3-pip`` 包可能已损坏无法升级。需使用脚本 `get-pip.py <https://bootstrap.pypa.io/get-pip.py>`_ 手动删除并安装该包::
|
|
|
|
|
|
|
|
|
|
apt remove python3-pip python3-virtualenv; rm -r ~/.local
|
|
|
|
|
rm -r ~/.espressif/python_env && python get-pip.py
|
|
|
|
|
|
|
|
|
|
停用 Python 2
|
|
|
|
|
====================
|
|
|
|
|
|
|
|
|
|
Python 2 已经 `结束生命周期 <https://www.python.org/doc/sunset-python-2/>`_,ESP-IDF 很快将不再支持 Python 2。请安装 Python 3.6 或以上版本。可参考上面列出的目前主流 Linux 发行版的安装说明。
|
|
|
|
|
|
|
|
|
|
|
2018-02-03 16:12:13 -05:00
|
|
|
|
后续步骤
|
2019-10-10 04:52:07 -04:00
|
|
|
|
==========
|
2018-02-03 16:12:13 -05:00
|
|
|
|
|
2019-10-10 04:52:07 -04:00
|
|
|
|
继续设置开发环境,请前往 :ref:`get-started-get-esp-idf` 章节。
|
2018-02-03 16:12:13 -05:00
|
|
|
|
|
|
|
|
|
|
2020-11-30 05:06:05 -05:00
|
|
|
|
.. _AUR: https://wiki.archlinux.org/index.php/Arch_User_Repository
|