Skip to content

Commit 115a6f5

Browse files
authored
Fix cpp dependencies installation (#3018)
1 parent 9a27a63 commit 115a6f5

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

ts_scripts/install_dependencies.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,9 @@ def install_numactl(self):
209209
os.system(f"{self.sudo_cmd}apt-get install -y numactl")
210210

211211
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-
)
212+
os.system(
213+
f"{self.sudo_cmd}apt-get install -y {' '.join(CPP_LINUX_DEPENDENCIES)}"
214+
)
216215

217216
def install_neuronx_driver(self):
218217
# Configure Linux for Neuron repository updates

0 commit comments

Comments
 (0)