aboutsummaryrefslogtreecommitdiff
path: root/install_ubuntu.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install_ubuntu.sh')
-rwxr-xr-xinstall_ubuntu.sh6
1 files changed, 1 insertions, 5 deletions
diff --git a/install_ubuntu.sh b/install_ubuntu.sh
index 0e36542..af1af43 100755
--- a/install_ubuntu.sh
+++ b/install_ubuntu.sh
@@ -5,11 +5,8 @@ cd "$script_dir"
[ $(id -u) -ne 0 ] && echo "You need root privileges to run the install script" && exit 1
-dpkg -l nvidia-cuda-dev > /dev/null 2>&1
-cuda_missing="$?"
-
set -e
-apt-get -y install build-essential nvidia-cuda-dev\
+apt-get -y install build-essential\
libswresample-dev libavformat-dev libavcodec-dev libavutil-dev\
libgl-dev libx11-dev libxcomposite-dev\
libpulse-dev
@@ -24,4 +21,3 @@ install -Dm755 "gpu-screen-recorder" "/usr/local/bin/gpu-screen-recorder"
install -Dm755 "gpu-screen-recorder" "/usr/bin/gpu-screen-recorder"
echo "Successfully installed gpu-screen-recorder"
-[ "$cuda_missing" -eq 1 ] && echo "You need to reboot your computer before using gpu-screen-recorder because cuda was installed"