-
Notifications
You must be signed in to change notification settings - Fork 1
/
prereq.sh
37 lines (36 loc) · 867 Bytes
/
prereq.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# Electrochemical_ORR_procesing_autolab
#
# email: www.gasparcarrascohuertas.com
#
tmppwd=$PWD
#Utils
echo "####################################################### "
echo "#INSTALLING UTILS# "
echo "####################################################### "
#wget
sudo apt install git -y
#update_and_upgrade
sudo apt-get update -y
sudo apt-get upgrade -y
#
#Python_modules
echo "####################################################### "
echo "#PYTHON MODULES# "
echo "####################################################### "
#Matplotlib
sudo pip install -U pip
sudo pip install -U matplotlib
#Numpy
sudo pip install numpy
#Pandas
sudo pip install pandas
#Glob
sudo pip install glob3
#shutil
sudo pip install pytest-shutil
#Astropy
sudo pip install astropy
#update_and_upgrade
sudo apt-get update -y
sudo apt-get upgrade -y