Skip to content

Commit

Permalink
script for getting linux VM ready for benchmarking
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Oct 15, 2023
1 parent ce26c2e commit 290cf40
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions benchmarking/scripts/linux_download_tools.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#########################
# Installs for linux VM
#########################

# Basic installs
sudo apt update
sudo apt install libgomp1
sudo apt install zip


# python
sudo apt install python3-pip
sudo apt-get install python3.6
pip install numpy

# JVM for FastViromeExplorer
sudo apt install default-jdk
sudo apt-get install libncurses5-dev libncursesw5-dev
sudo apt install lzma-dev

# for rust cc
sudo apt install build-essential

# install (GLIBCXX)
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt install -y g++-11

sudo cp ../linux-binaries/* /bin/

0 comments on commit 290cf40

Please sign in to comment.