Documentation du Dr FRAPPE

Ce wiki regroupe les résultats de mes expériences en informatique accumulés au cours de mes recherches sur le net.

Dans la mesure du possible, j'ai cité mes sources ; il en manque certainement… :-)

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
Prochaine révisionLes deux révisions suivantes
logiciel:systeme:pyrenamer:start [2021/02/26 10:46] – [pyRenamer : Renommer en nombre] adminlogiciel:systeme:pyrenamer:start [2022/02/13 16:07] admin
Ligne 14: Ligne 14:
  
 ===== Pré-requis ===== ===== Pré-requis =====
 +
 +Téléchargez et installez les dépendances :<cli prompt='$ '>...@...:~ $ mkdir ~/Bureau/PyRenamer
 +...@...:~ $ cd ~/Bureau/PyRenamer
 +...@...:~/Bureau/PyRenamer$ wget http://ftp.br.debian.org/debian/pool/main/g/gnome-python/python-gconf_2.28.1+dfsg-1.2_amd64.deb
 +...@...:~/Bureau/PyRenamer$ wget http://ftp.br.debian.org/debian/pool/main/h/hachoir-core/python-hachoir-core_1.3.3-4_all.deb
 +...@...:~/Bureau/PyRenamer$ wget http://ftp.br.debian.org/debian/pool/main/h/hachoir-metadata/python-hachoir-metadata_1.3.3-2_all.deb
 +...@...:~/Bureau/PyRenamer$ wget http://ftp.br.debian.org/debian/pool/main/h/hachoir-parser/python-hachoir-parser_1.3.4-2_all.deb
 +...@...:~/Bureau/PyRenamer$ wget http://ftp.br.debian.org/debian/pool/main/p/pygobject-2/python-gobject-2_2.28.6-13+b1_amd64.deb
 +...@...:~/Bureau/PyRenamer$ wget http://ftp.br.debian.org/debian/pool/main/p/pygtk/python-glade2_2.24.0-5.1+b1_amd64.deb
 +...@...:~/Bureau/PyRenamer$ wget http://ftp.br.debian.org/debian/pool/main/p/pygtk/python-gtk2_2.24.0-5.1+b1_amd64.deb
 +...@...:~/Bureau/PyRenamer$ wget http://ftp.br.debian.org/debian/pool/main/p/pycairo/python-cairo_1.16.2-1+b1_amd64.deb
 +...@...:~/Bureau/PyRenamer$ wget http://ftp.br.debian.org/debian/pool/main/p/python-numpy/python-numpy_1.16.2-1_amd64.deb
 +...@...:~/Bureau/PyRenamer$ wget http://ftp.br.debian.org/debian/pool/main/p/python-setuptools/python-pkg-resources_44.1.1-1_all.deb
 +...@...:~/Bureau/PyRenamer$ wget http://ftp.br.debian.org/debian/pool/main/libf/libffi/libffi6_3.2.1-9_amd64.deb
 +...@...:~/Bureau/PyRenamer$ sudo apt install ./*.deb</cli>
  
 ===== Installation ===== ===== Installation =====
  
-<subnumberlist+<WRAP deep-list
-  - **Créez sur votre bureau un dossier ~/Bureau/PyRenamer** :<cli prompt='$ '>...@...:~ $ mkdir ~/Bureau/PyRenamer +  - **Téléchargez et installez pyrenamer** :<cli prompt='$ '>...@...:~/Bureau/PyRenamer$ wget http://archive.ubuntu.com/ubuntu/pool/universe/p/pyrenamer/pyrenamer_0.6.0-1.2_all.deb 
-...@...:cd ~/Bureau/PyRenamer</cli> +...@...:~/Bureau/PyRenamer$ sudo apt install ./pyrenamer_0.6.0-1.2_all.deb</cli> 
-  - **Téléchargez les fichiers** : +  - **S'il reste des dépendances non résolues**, tentez :<cli prompt='$ '>...@...:~ $ sudo apt -f install</cli>Si cela ne suffit pas, téléchargez-les et installez-les. 
-    - [[http://archive.ubuntu.com/ubuntu/pool/universe/p/pyrenamer/pyrenamer_0.6.0-1.2_all.deb]] +</WRAP> 
-    - [[http://ftp.br.debian.org/debian/pool/main/h/hachoir-core/python-hachoir-core_1.3.3-4_all.deb]] +
-    - [[http://ftp.br.debian.org/debian/pool/main/h/hachoir-parser/python-hachoir-parser_1.3.4-2_all.deb]] +
-    - [[http://ftp.br.debian.org/debian/pool/main/h/hachoir-metadata/python-hachoir-metadata_1.3.3-2_all.deb]] +
-    - [[http://ftp.br.debian.org/debian/pool/main/g/gnome-python/python-gconf_2.28.1+dfsg-1.2_amd64.deb]]   +
-    - [[http://ftp.br.debian.org/debian/pool/main/libf/libffi/libffi6_3.2.1-9_amd64.deb]] +
-    - [[http://ftp.br.debian.org/debian/pool/main/p/pygobject-2/python-gobject-2_2.28.6-13+b1_amd64.deb]] +
-    - [[http://ftp.br.debian.org/debian/pool/main/g/gnome-python/python-gconf_2.28.1+dfsg-1.2_amd64.deb]] +
-    - [[http://ftp.br.debian.org/debian/pool/main/p/python-setuptools/python-pkg-resources_44.1.1-1_all.deb]] +
-    - [[http://ftp.br.debian.org/debian/pool/main/p/python-numpy/python-numpy_1.16.2-1_amd64.deb]] +
-    - [[http://ftp.br.debian.org/debian/pool/main/p/pycairo/python-cairo_1.16.2-1+b1_amd64.deb]] +
-    - [[http://ftp.br.debian.org/debian/pool/main/p/pygtk/python-gtk2_2.24.0-5.1+b1_amd64.deb]] +
-    - [[http://ftp.br.debian.org/debian/pool/main/p/pygtk/python-glade2_2.24.0-5.1+b1_amd64.deb]] +
-  - **Installez tout** :<cli prompt='$ '>...@...:~ $ sudo dpkg -i *.deb</cli> +
-  - **Installez les dépendances** :<cli prompt='$ '>...@...:~ $ sudo apt -f install</cli> +
-</subnumberlist>+
 ===== Configuration ===== ===== Configuration =====
  
Ligne 45: Ligne 46:
 ===== Voir aussi ===== ===== Voir aussi =====
  
-  * **(fr)** [[http://Article]]+  * **(fr)** [[https://doc.ubuntu-fr.org/pyrenamer]]
  
 ---- ----
-//Basé sur << [[http://Article|Article]] >> par Auteur.//+//Basé sur << [[https://doc.ubuntu-fr.org/pyrenamer|pyrenamer]] >> par Doc ubuntu.//