-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
script for getting linux VM ready for benchmarking
- Loading branch information
Ubuntu
committed
Oct 15, 2023
1 parent
ce26c2e
commit 290cf40
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |