Index: /BOL/script_install/install_ubuntu22_packages.sh
===================================================================
--- /BOL/script_install/install_ubuntu22_packages.sh	(revision 4777)
+++ /BOL/script_install/install_ubuntu22_packages.sh	(revision 4778)
@@ -3,4 +3,9 @@
 ################################################################
 # Complément d'installation Ubuntu22
+# Frédéric Hourdin.
+#
+# Developpe et utilise a fins personnelles et pour les PCs
+# enseignement.
+# Permet de faire tourner entre autres LMDZ et les outils HighTune
 ################################################################
 
@@ -16,4 +21,7 @@
 acroread=1
 workspace_matrix=0
+miniconda=1
+panoply=1
+cours_m2=1
 
 install="sudo apt install -y"
@@ -103,8 +111,8 @@
 ........eod
     done
+    cd /tmp
+    wget http://www.lmd.jussieu.fr/~lmdz/data_ferret.tar
     cd /usr/share/ferret-vis
-    wget http://www.lmd.jussieu.fr/~lmdz/data_ferret.tar
-    tar xvf data_ferret.tar
-    \rm -f data_ferret.tar
+    sudo tar xvf /tmp/data_ferret.tar
 fi
 #===============================================================================
@@ -155,2 +163,32 @@
     echo then click on the OFF button
 fi
+
+#===============================================================================
+if [ $miniconda = 1 ] ; then 
+   cd /tmp
+   wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
+   cd
+   # Option -b pour installer sans repondre aux droits
+   bash /tmp/Miniconda3-latest-Linux-x86_64.sh -b
+   export PATH=~/miniconda3/bin:$PATH
+   conda activater ; conda init ; conda deactivate
+   #conda init --reverse bash
+   conda create -n FERRET -c conda-forge pyferret ferret_datasets --yes
+   \rm -f Miniconda3-latest-Linux-x86_64.sh
+   wget http://www.lmd.jussieu.fr/~hourdin/COURS/UTILS/environment.yaml
+   if [ $cours_m2 ] ; then
+      conda env create -f environment.yaml
+      \rm -f environment.yaml
+   fi
+fi
+
+#===============================================================================
+if [ $panoply = 1 ] ; then 
+    cd
+    sudo apt-get install openjdk-11-jre
+    wget https://www.giss.nasa.gov/tools/panoply/download/PanoplyJ-5.3.0.tgz
+    tar xvzf PanoplyJ-5.3.0.tgz
+    \rm -f PanoplyJ-5.3.0.tgz
+    cd PanoplyJ/
+    # ./panoply.sh devrait ouvrir la fenêtre Panoply
+fi
