12 lines
284 B
Plaintext
12 lines
284 B
Plaintext
|
# Installation idf-esp
|
||
|
mkdir -p ~/esp && cd ~/esp
|
||
|
git clone --recursive https://github.com/espressif/esp-idf.git
|
||
|
cd ~/esp/esp-idf && ./install.sh esp32
|
||
|
. $HOME/esp/esp-idf/export.sh
|
||
|
|
||
|
# add to your bashrc or zshrc
|
||
|
alias get_idf='. $HOME/esp/esp-idf/export.sh'
|
||
|
|
||
|
#for run projet
|
||
|
get_idf
|