Spaces:
Runtime error
Runtime error
--progress=dot:giga
Browse files- utils/cuda_toolkit.py +1 -1
utils/cuda_toolkit.py
CHANGED
|
@@ -17,7 +17,7 @@ def install_cuda_toolkit():
|
|
| 17 |
cuda_path = f'/usr/local/cuda-{CUDA_VERSION}'
|
| 18 |
bashrc_path = Path.home() / '.bashrc'
|
| 19 |
|
| 20 |
-
subprocess.run(f'wget {installer_url} -O {installer_path}', check=True, shell=True)
|
| 21 |
subprocess.run(f'fakeroot sh {installer_path} --silent --toolkit --override', check=True, shell=True)
|
| 22 |
|
| 23 |
bashrc_lines = (
|
|
|
|
| 17 |
cuda_path = f'/usr/local/cuda-{CUDA_VERSION}'
|
| 18 |
bashrc_path = Path.home() / '.bashrc'
|
| 19 |
|
| 20 |
+
subprocess.run(f'wget --progress=dot:giga {installer_url} -O {installer_path}', check=True, shell=True)
|
| 21 |
subprocess.run(f'fakeroot sh {installer_path} --silent --toolkit --override', check=True, shell=True)
|
| 22 |
|
| 23 |
bashrc_lines = (
|