17 lines
445 B
Bash
Executable File
17 lines
445 B
Bash
Executable File
#!/bin/bash
|
|
# Installing Python libraries
|
|
|
|
# Update pip
|
|
pip install --upgrade pip
|
|
|
|
# Install Python libraries
|
|
pip install pandas numpy matplotlib requests
|
|
|
|
# Verify installations
|
|
python3 -c "import pandas; print('Pandas installed')"
|
|
python3 -c "import numpy; print('Numpy installed')"
|
|
python3 -c "import matplotlib; print('Matplotlib installed')"
|
|
python3 -c "import requests; print('Requests installed')"
|
|
|
|
# Finished installing Python libraries
|