We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a27a63 commit 115a6f5Copy full SHA for 115a6f5
ts_scripts/install_dependencies.py
@@ -209,10 +209,9 @@ def install_numactl(self):
209
os.system(f"{self.sudo_cmd}apt-get install -y numactl")
210
211
def install_cpp_dependencies(self):
212
- if os.system("clang-tidy --version") != 0 or args.force:
213
- os.system(
214
- f"{self.sudo_cmd}apt-get install -y {' '.join(CPP_LINUX_DEPENDENCIES)}"
215
- )
+ os.system(
+ f"{self.sudo_cmd}apt-get install -y {' '.join(CPP_LINUX_DEPENDENCIES)}"
+ )
216
217
def install_neuronx_driver(self):
218
# Configure Linux for Neuron repository updates
0 commit comments