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
3 changes: 3 additions & 0 deletions install_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ if ! [ -x "$(command -v brew)" ]; then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi

brew update
brew upgrade

if ! [ -x "$(command -v git)" ]; then
echo "Installing git."
brew install git
Expand Down
5 changes: 4 additions & 1 deletion install_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ $RTT_PYTHON --version 2 > /dev/null || {
exit 1
}

sudo apt update
sudo apt upgrade

if ! [ -x "$(command -v gcc)" ]; then
echo "Installing gcc."
sudo apt install gcc
Expand All @@ -30,7 +33,7 @@ fi

$RTT_PYTHON -m pip list > /dev/null || {
echo "Installing pip."
sudo apt install python3-pip
sudo apt install $RTT_PYTHON-pip
}

if ! [ -x "$(command -v scons)" ]; then
Expand Down