-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1a129c
commit d13bb2b
Showing
2 changed files
with
52 additions
and
1 deletion.
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,45 @@ | ||
#!/bin/bash | ||
|
||
# Update package lists | ||
echo "Updating package lists..." | ||
sudo apt-get update | ||
|
||
# Install Clang++ | ||
echo "Installing Clang++..." | ||
sudo apt-get install -y clang | ||
|
||
# Install CMake (version 3.22 or higher) | ||
echo "Installing CMake..." | ||
sudo apt-get install -y software-properties-common | ||
sudo apt-add-repository -y ppa:ubuntu-toolchain-r/test | ||
sudo apt-get update | ||
sudo apt-get install -y cmake | ||
|
||
# Install Boost | ||
echo "Installing Boost..." | ||
sudo apt-get install -y libboost-all-dev | ||
|
||
# Install BZIP2 | ||
echo "Installing BZIP2..." | ||
sudo apt-get install -y libbz2-dev | ||
|
||
# Install OpenSSL | ||
echo "Installing OpenSSL..." | ||
sudo apt-get install -y libssl-dev | ||
|
||
# Install libcurl | ||
echo "Installing libcurl..." | ||
sudo apt-get install -y libcurl4-openssl-dev | ||
|
||
# Install g++ | ||
echo "Installing g++..." | ||
sudo apt-get install -y g++ | ||
|
||
# Install Python dependencies directly | ||
echo "Installing Python dependencies in the system-wide Python environment..." | ||
sudo apt-get install -y python3-pip | ||
pip3 install --upgrade pip --break-system-packages | ||
pip3 install pandas seaborn --break-system-packages | ||
|
||
# Final check | ||
echo "All dependencies installed successfully! Python dependencies are installed system-wide." |
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