Skip to content

Commit

Permalink
fix(setup/esp32): update a package name in linux.ts (#152)
Browse files Browse the repository at this point in the history
Changed the package name from python-setuptools to python3-setuptools
  • Loading branch information
intGus committed Dec 8, 2023
1 parent d210bcb commit 357d7e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toolbox/setup/esp32/linux.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export async function installDeps(
spinner: ReturnType<GluegunPrint['spin']>
): Promise<void> {
await execWithSudo(
'apt-get install --yes git wget flex bison gperf python-is-python3 python3-pip python3-serial python-setuptools cmake ninja-build ccache libffi-dev libssl-dev dfu-util',
'apt-get install --yes git wget flex bison gperf python-is-python3 python3-pip python3-serial python3-setuptools cmake ninja-build ccache libffi-dev libssl-dev dfu-util',
{ stdout: process.stdout }
)
spinner.succeed()
Expand Down

0 comments on commit 357d7e0

Please sign in to comment.