CAO : KICAD Librairie

De Wiki_du_Réseau_des_Electroniciens_du_CNRS
Aller à la navigationAller à la recherche


Pour simplifier l’installation des librairies pour KiCad, voici un script pour Windows à sauvegarder dans le fichier "install_kicad_github_repositories.bat".

Ce fichier nécessite d'avoir installé au préalable Git sur son ordinateur. Placez alors le fichier dans votre répertoire de partage des librairies pour KiCad, exemple :

C:\cao\kicad\share\install_kicad_github_repositories.bat

   @Title Install GitHub Libraries for KiCad 5.0
   @Echo.
   @Echo Library Repositories for the KiCad 5.0
   @Echo ======================================
   @Echo In conjunction with the KiCad v5 software release, the libraries
   @Echo will be reorganised into four separate repositories (on GitHub).
   @Echo.
   @Echo   . kicad-symbols - Schematic symbol libraries
   @Echo   . kicad-footprints - PCB footprint libraries
   @Echo   . kicad-packages3d - 3D model data (3D sources in kicad-packages3d-source)
   @Echo   . kicad-templates - Project templates
   @Echo.
   @Echo Start the installation...
   git clone https://github.com/kicad/kicad-symbols.git
   git clone https://github.com/kicad/kicad-footprints.git
   git clone https://github.com/kicad/kicad-packages3d.git
   git clone https://github.com/KiCad/kicad-templates.git
   @Echo.
   @Echo End of installation.
   @Pause


Le lancement du fichier batch pour Windows, permettant l'installation automatique des librairies officiels pour KiCad ;-)


Ensuite pour la mise à jour régulière, lancez le fichier batch "update_kicad_github_repositories.bat" suivant :

C:\cao\kicad\share\update_kicad_github_repositories.bat

   @Title Update GitHub Libraries for KiCad 5.0
   @Echo.
   @Echo Library Repositories for the KiCad 5.0
   @Echo ======================================
   @Echo In conjunction with the KiCad v5 software release, the libraries
   @Echo will be reorganised into four separate repositories (on GitHub).
   @Echo.
   @Echo   . kicad-symbols - Schematic symbol libraries
   @Echo   . kicad-footprints - PCB footprint libraries
   @Echo   . kicad-packages3d - 3D model data (3D sources in kicad-packages3d-source)
   @Echo   . kicad-templates - Project templates
   @Echo.
   @Echo Start updating...
   @cd kicad-symbols
   git pull https://github.com/kicad/kicad-symbols.git
   @cd ..
   @cd kicad-footprints
   git pull https://github.com/kicad/kicad-footprints.git
   @cd ..
   @cd kicad-packages3d
   git pull https://github.com/kicad/kicad-packages3d.git
   @cd ..
   @cd kicad-templates
   git pull https://github.com/KiCad/kicad-templates.git
   @cd ..
   @Echo.
   @Echo End updating.
   @Pause