cbensimon HF Staff commited on
Commit
4642880
·
verified ·
1 Parent(s): dcd2ed8

--progress=dot:giga

Browse files
Files changed (1) hide show
  1. 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 = (