first commit
This commit is contained in:
commit
e6c52820cd
227 changed files with 16156 additions and 0 deletions
65
documentation/depannage.html
Normal file
65
documentation/depannage.html
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>SuiteConsultance — Documentation Utilisateur</title>
|
||||
<link rel="stylesheet" href="assets/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="navbar">
|
||||
<div class="inner">
|
||||
<div class="brand">SuiteConsultance</div>
|
||||
<span class="badge">v1.0</span>
|
||||
<div class="navlinks"><a href="index.html">Accueil</a>
|
||||
<a href="installation.html">Installation</a>
|
||||
<a href="demarrage.html">Démarrage rapide</a>
|
||||
<a href="crm.html">CRM</a>
|
||||
<a href="email.html">Emails & Scraping</a>
|
||||
<a href="propositions.html">Propositions</a>
|
||||
<a href="devis.html">Devis</a>
|
||||
<a href="projets.html">Projets</a>
|
||||
<a href="taches.html">Tâches & Rappels</a>
|
||||
<a href="api.html">API</a>
|
||||
<a href="donnees.html">Données & Sauvegarde</a>
|
||||
<a href="build.html">Build Desktop</a>
|
||||
<a href="depannage.html" style="background:orange">Dépannage</a>
|
||||
<a href="faq.html">FAQ</a></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<h2>Problèmes fréquents</h2>
|
||||
|
||||
<h3>Pillow / lxml : erreurs de compilation</h3>
|
||||
<div class="note">
|
||||
<p>Mettez à jour les outils de build et réinstallez :</p>
|
||||
<pre>python -m pip install --upgrade pip setuptools wheel
|
||||
pip install --no-cache-dir --force-reinstall pillow lxml</pre>
|
||||
</div>
|
||||
|
||||
<h3>NumPy: <em>dtype size changed</em></h3>
|
||||
<div class="note">
|
||||
<p>Incompatibilité binaire. Supprimez le cache et forcez la réinstallation :</p>
|
||||
<pre>pip uninstall -y numpy
|
||||
pip install --no-cache-dir numpy</pre>
|
||||
</div>
|
||||
|
||||
<h3>PyInstaller : l’app ne se lance pas</h3>
|
||||
<ul>
|
||||
<li>Testez d’abord : <code>python run.py --webview</code>.</li>
|
||||
<li>Vérifiez les <strong>spécifications</strong> <code>SuiteConsultance.spec</code> et les <strong>icônes</strong>.</li>
|
||||
<li>Regardez les logs en lançant l’exécutable depuis un terminal.</li>
|
||||
</ul>
|
||||
|
||||
<h3>“Le répertoire n’existe pas”</h3>
|
||||
<p>Exécutez <code>python install.py</code> pour créer <code>Data/</code> et <code>output/</code>.</p>
|
||||
|
||||
<h3>Dépendances manquantes</h3>
|
||||
<p>Le lanceur vérifie <em>fpdf, dateutil, pillow, packaging, pywebview</em>. Installez ce qui manque :</p>
|
||||
<pre>pip install -r requirements.txt</pre>
|
||||
</div>
|
||||
|
||||
<div class="container footer small">Dernière mise à jour : 24 August 2025 • Ce guide couvre l’utilisation de la version actuelle de SuiteConsultance.</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue