Zested, un éditeur hors-ligne pour ZdS

Parce que Python, ça roxxe du poney

a marqué ce sujet comme résolu.

Alors le projet est toujours maintenu, même si ces derniers mois d'autres projets m'ont tenus à l'écart de la rédaction et donc de cet éditeur. Aux dernières nouvelles, j'avais du mal à installer un correcteur orthographique sous Windows.

Mais en effet, la Zep12 va rendre l'utilisation d'un éditeur hors-ligne encore plus sympa.

Dans tous les cas, je cherche toujours des gens pour m'aider à maintenir ce logiciel. Je suis gentil, je ne mors pas et je peut aider tout débutant motivé !

+0 -0

Luthaf : j'ai deux priorités perso avant de venir t'aider (et il est possible qu'à partir d'un moment je devienne plus productif sur ton éditeur que sur zds lui même) : la ZEP 12 et la validation partielle.

Donc pour l'instant je suis pas dessus mais ça viendra.

Remarque préliminaire : Je ne connais rien à Python.

J'ai voulu installer Zested sur Linux avec pip3, mais ça plante :

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Requirement already satisfied (use --upgrade to upgrade): Zested from https://github.com/Luthaf/ZestEd/archive/0.4.zip in /usr/local/lib/python3.4/dist-packages
Downloading/unpacking PySide (from Zested)
  Downloading PySide-1.2.2.tar.gz (9.3MB): 9.3MB downloaded
  Running setup.py (path:/tmp/pip_build_richou/PySide/setup.py) egg_info for package PySide
    Removing /tmp/pip_build_richou/PySide/pyside_package
    
    package init file 'pyside_package/PySide/__init__.py' not found (or not a regular file)
    package init file 'pyside_package/pysideuic/__init__.py' not found (or not a regular file)
    warning: no previously-included files matching '**' found under directory 'sources/pyside-examples/examples/hyperui'
    warning: no previously-included files matching '**' found under directory 'sources/pyside-examples/mobility'
    warning: no previously-included files matching '**' found under directory 'sources/shiboken/.git'
    warning: no previously-included files matching '**' found under directory 'sources/pyside/.git'
    warning: no previously-included files matching '**' found under directory 'sources/pyside-tools/.git'
    warning: no previously-included files matching '**' found under directory 'sources/pyside-examples/.git'
    warning: no files found matching '**' under directory 'pyside_package/PySide'
    warning: no files found matching '**' under directory 'pyside_package/PySide/docs'
    warning: no files found matching '**' under directory 'pyside_package/PySide/plugins'
    warning: no files found matching '**' under directory 'pyside_package/PySide/imports'
    warning: no files found matching '**' under directory 'pyside_package/PySide/translations'
    warning: no files found matching '**' under directory 'pyside_package/PySide/include'
    warning: no files found matching '**' under directory 'pyside_package/PySide/typesystems'
    warning: no files found matching '**' under directory 'pyside_package/PySide/examples'
    warning: no files found matching '**' under directory 'pyside_package/pysideuic'
    warning: no files found matching '**' under directory 'pyside_package/pysideuic/Compiler'
    warning: no files found matching '**' under directory 'pyside_package/pysideuic/port_v2'
    warning: no files found matching '**' under directory 'pyside_package/pysideuic/port_v3'
    warning: no files found matching '**' under directory 'pyside_package/pysideuic/widget-plugins'
Downloading/unpacking pygments (from Zested)
  Downloading Pygments-2.0.2-py3-none-any.whl (672kB): 672kB downloaded
Downloading/unpacking markdown (from Zested)
  Downloading Markdown-2.6.2-py2.py3-none-any.whl (157kB): 157kB downloaded
Installing collected packages: PySide, pygments, markdown
  Running setup.py install for PySide
    Removing /tmp/pip_build_richou/PySide/pyside_package
    Python architecture is 64bit
    qmake: could not exec '/usr/lib/x86_64-linux-gnu/qt4/bin/qmake': No such file or directory
    Failed to query the Qt version with qmake /usr/bin/qmake
    Complete output from command /usr/bin/python3 -c "import setuptools, tokenize;__file__='/tmp/pip_build_richou/PySide/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-gn2xiql_-record/install-record.txt --single-version-externally-managed --compile:
    Removing /tmp/pip_build_richou/PySide/pyside_package

running install

running build

Python architecture is 64bit

qmake: could not exec '/usr/lib/x86_64-linux-gnu/qt4/bin/qmake': No such file or directory

Failed to query the Qt version with qmake /usr/bin/qmake

----------------------------------------
Cleaning up...
Command /usr/bin/python3 -c "import setuptools, tokenize;__file__='/tmp/pip_build_richou/PySide/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-gn2xiql_-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_richou/PySide
Storing debug log for failure in /home/richou/.pip/pip.log

Et le fichier pip.log :

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
Exception information:
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/pip/basecommand.py", line 122, in main
    status = self.run(options, args)
  File "/usr/lib/python3/dist-packages/pip/commands/install.py", line 283, in run
    requirement_set.install(install_options, global_options, root=options.root_path)
  File "/usr/lib/python3/dist-packages/pip/req.py", line 1436, in install
    requirement.install(install_options, global_options, *args, **kwargs)
  File "/usr/lib/python3/dist-packages/pip/req.py", line 707, in install
    cwd=self.source_dir, filter_stdout=self._filter_install, show_stdout=False)
  File "/usr/lib/python3/dist-packages/pip/util.py", line 715, in call_subprocess
    % (command_desc, proc.returncode, cwd))
pip.exceptions.InstallationError: Command /usr/bin/python3 -c "import setuptools, tokenize;__file__='/tmp/pip_build_richou/PySide/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-gn2xiql_-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_richou/PySide

Je suppose que c'est moi qui m'y prend comme un pied et que ça vaut pas le coup d'ouvrir un billet sur GitHub, mais un coup de pouce est le bienvenu ! :)

Connectez-vous pour pouvoir poster un message.
Connexion

Pas encore membre ?

Créez un compte en une minute pour profiter pleinement de toutes les fonctionnalités de Zeste de Savoir. Ici, tout est gratuit et sans publicité.
Créer un compte