Skip to content

Commit 8acef3a

Browse files
committed
remove sudo
1 parent cba2861 commit 8acef3a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

install-dependencies.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Installation Script - tested on a fresh install of Ubuntu 20.04.3 LTS
1+
# Installation Script - tested on a fresh install of Ubuntu 20.04.3 LTS as root (sudo)
22

33
# Show all commands being run
44
#set -x
@@ -7,11 +7,11 @@
77
set -e
88

99
# Pull packages from apt
10-
sudo apt install -y python3-pip build-essential libssl-dev swig python3-dev
10+
apt install -y python3-pip build-essential libssl-dev swig python3-dev
1111

1212
# Install Google Chrome
1313
wget -O /tmp/google-chrome-stable_current_amd64.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
14-
sudo apt install -y /tmp/google-chrome-stable_current_amd64.deb
14+
apt install -y /tmp/google-chrome-stable_current_amd64.deb
1515

1616
# Install required python packages
17-
pip3 install -r requirements.txt
17+
pip3 install -r requirements.txt

0 commit comments

Comments
 (0)