From 2477f020c7eab5a1654a8b45f16e486d4e46c01f Mon Sep 17 00:00:00 2001 From: aggarwalakshun Date: Wed, 15 Jan 2025 05:21:27 +0530 Subject: [PATCH] change nvidia-open to nvidia --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6ca51e3..c52557d 100644 --- a/setup.py +++ b/setup.py @@ -414,7 +414,7 @@ def nvidia_drivers(): distro = detect_distro() if distro == "arch": try: - command = subprocess.run(["sudo", "pacman", "-S", "nvidia-open"], text = True) + command = subprocess.run(["sudo", "pacman", "-S", "nvidia"], text = True) print(command) except subprocess.CalledProcessError as e: print(f"Failed to install with {e.returncode}")