Skip to content

Commit

Permalink
no scons version limit any more
Browse files Browse the repository at this point in the history
  • Loading branch information
mysterywolf committed Mar 31, 2024
1 parent e73d0f2 commit 872c22e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion install_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $RTT_PYTHON -m pip list > /dev/null || {

if ! [ -x "$(command -v scons)" ]; then
echo "Installing scons."
$RTT_PYTHON -m pip install scons==4.4.0
$RTT_PYTHON -m pip install scons
fi

if ! [ -x "$(command -v pyocd)" ]; then
Expand Down
2 changes: 1 addition & 1 deletion install_suse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
sudo zypper update -y

sudo zypper install python3 python3-pip gcc git ncurses-devel cross-arm-none-gcc11-bootstrap cross-arm-binutils qemu qemu-arm qemu-extra -y
python3 -m pip install scons==4.4.0 requests
python3 -m pip install scons requests
python3 -m pip install -U pyocd

url=https://raw.githubusercontent.com/RT-Thread/env/master/touch_env.sh
Expand Down
2 changes: 1 addition & 1 deletion install_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sudo apt-get update
sudo apt-get upgrade -y

sudo apt-get -qq install python3 python3-pip gcc git libncurses5-dev gcc-arm-none-eabi binutils-arm-none-eabi gdb-multiarch qemu qemu-system-arm -y
python3 -m pip install scons==4.4.0 requests
python3 -m pip install scons requests
python3 -m pip install -U pyocd

url=https://raw.githubusercontent.com/RT-Thread/env/master/touch_env.sh
Expand Down
2 changes: 1 addition & 1 deletion install_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ cmd /c $RTT_PYTHON -m pip install --upgrade pip -i $PIP_SOURCE --trusted-host $P

if (!(Test-Command scons)) {
echo "Installing scons."
cmd /c $RTT_PYTHON -m pip install scons==4.4.0 -i $PIP_SOURCE --trusted-host $PIP_HOST
cmd /c $RTT_PYTHON -m pip install scons -i $PIP_SOURCE --trusted-host $PIP_HOST
} else {
echo "scons has installed. Jump this step."
}
Expand Down

0 comments on commit 872c22e

Please sign in to comment.