File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -77,9 +77,7 @@ def main():
77
77
download_path = "/tmp" # default download path
78
78
79
79
if len (sys .argv ) < 2 :
80
- print (
81
- "Usage: python install_cuda.py <version/all> [user/system] [download_path]"
82
- )
80
+ print ("Usage: python install_cuda.py <version/all> [user/system] [download_path]" )
83
81
sys .exit (1 )
84
82
85
83
version = sys .argv [1 ]
@@ -100,9 +98,7 @@ def main():
100
98
elif version in cuda_versions :
101
99
install_cuda (version , base_path , download_path )
102
100
else :
103
- print (
104
- f"Invalid CUDA version: { version } . Available versions are: { ', ' .join (cuda_versions .keys ())} "
105
- )
101
+ print (f"Invalid CUDA version: { version } . Available versions are: { ', ' .join (cuda_versions .keys ())} " )
106
102
sys .exit (1 )
107
103
108
104
You can’t perform that action at this time.
0 commit comments