Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
$RTT_PYTHON -m pip install scons==4.4.0
fi

if ! [[ `$RTT_PYTHON -m pip list | grep requests` ]]; then
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 update
sudo apt upgrade -y

sudo apt 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 requests
python3 -m pip install scons==4.4.0 requests

url=https://raw.githubusercontent.com/RT-Thread/env/master/touch_env.sh
if [ $1 ] && [ $1 = --gitee ]; then
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 -i $PIP_SOURCE --trusted-host $PIP_HOST
cmd /c $RTT_PYTHON -m pip install scons==4.4.0 -i $PIP_SOURCE --trusted-host $PIP_HOST
} else {
echo "Scons has installed. Jump this step."
}
Expand Down