Skip to content

Commit

Permalink
Fix cpp dependencies installation (#3018)
Browse files Browse the repository at this point in the history
  • Loading branch information
mreso committed Mar 12, 2024
1 parent 9a27a63 commit 115a6f5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ts_scripts/install_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,9 @@ def install_numactl(self):
os.system(f"{self.sudo_cmd}apt-get install -y numactl")

def install_cpp_dependencies(self):
if os.system("clang-tidy --version") != 0 or args.force:
os.system(
f"{self.sudo_cmd}apt-get install -y {' '.join(CPP_LINUX_DEPENDENCIES)}"
)
os.system(
f"{self.sudo_cmd}apt-get install -y {' '.join(CPP_LINUX_DEPENDENCIES)}"
)

def install_neuronx_driver(self):
# Configure Linux for Neuron repository updates
Expand Down

0 comments on commit 115a6f5

Please sign in to comment.