- Timestamp:
- Dec 19, 2023, 8:47:01 AM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOL/script_install/install_ubuntu22_packages.sh
r4760 r4778 3 3 ################################################################ 4 4 # Complément d'installation Ubuntu22 5 # Frédéric Hourdin. 6 # 7 # Developpe et utilise a fins personnelles et pour les PCs 8 # enseignement. 9 # Permet de faire tourner entre autres LMDZ et les outils HighTune 5 10 ################################################################ 6 11 … … 16 21 acroread=1 17 22 workspace_matrix=0 23 miniconda=1 24 panoply=1 25 cours_m2=1 18 26 19 27 install="sudo apt install -y" … … 103 111 ........eod 104 112 done 113 cd /tmp 114 wget http://www.lmd.jussieu.fr/~lmdz/data_ferret.tar 105 115 cd /usr/share/ferret-vis 106 wget http://www.lmd.jussieu.fr/~lmdz/data_ferret.tar 107 tar xvf data_ferret.tar 108 \rm -f data_ferret.tar 116 sudo tar xvf /tmp/data_ferret.tar 109 117 fi 110 118 #=============================================================================== … … 155 163 echo then click on the OFF button 156 164 fi 165 166 #=============================================================================== 167 if [ $miniconda = 1 ] ; then 168 cd /tmp 169 wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh 170 cd 171 # Option -b pour installer sans repondre aux droits 172 bash /tmp/Miniconda3-latest-Linux-x86_64.sh -b 173 export PATH=~/miniconda3/bin:$PATH 174 conda activater ; conda init ; conda deactivate 175 #conda init --reverse bash 176 conda create -n FERRET -c conda-forge pyferret ferret_datasets --yes 177 \rm -f Miniconda3-latest-Linux-x86_64.sh 178 wget http://www.lmd.jussieu.fr/~hourdin/COURS/UTILS/environment.yaml 179 if [ $cours_m2 ] ; then 180 conda env create -f environment.yaml 181 \rm -f environment.yaml 182 fi 183 fi 184 185 #=============================================================================== 186 if [ $panoply = 1 ] ; then 187 cd 188 sudo apt-get install openjdk-11-jre 189 wget https://www.giss.nasa.gov/tools/panoply/download/PanoplyJ-5.3.0.tgz 190 tar xvzf PanoplyJ-5.3.0.tgz 191 \rm -f PanoplyJ-5.3.0.tgz 192 cd PanoplyJ/ 193 # ./panoply.sh devrait ouvrir la fenêtre Panoply 194 fi
Note: See TracChangeset
for help on using the changeset viewer.