Je viens d'essayer une install sur un Windows 11, avec Python 3.10 qui s'installe quand on tape python depuis l'invite de commande windows. Et ca plante avec l'erreur suivante:
Code : Tout sélectionner
 python -mpip install giacpy
Collecting giacpy
  Downloading giacpy-0.7.0.tar.gz (456 kB)
     ---------------------------------------- 457.0/457.0 kB 9.5 MB/s eta 0:00:00
  Preparing metadata (setup.py) ... error
  error: subprocess-exited-with-error
  × python setup.py egg_info did not run successfully.
  │ exit code: 1
  ╰─> [7 lines of output]
      running egg_info
      creating C:\Users\paris\AppData\Local\Temp\pip-pip-egg-info-gykkbzrk\giacpy.egg-info
      writing C:\Users\paris\AppData\Local\Temp\pip-pip-egg-info-gykkbzrk\giacpy.egg-info\PKG-INFO
      writing dependency_links to C:\Users\paris\AppData\Local\Temp\pip-pip-egg-info-gykkbzrk\giacpy.egg-info\dependency_links.txt
      writing top-level names to C:\Users\paris\AppData\Local\Temp\pip-pip-egg-info-gykkbzrk\giacpy.egg-info\top_level.txt
      writing manifest file 'C:\Users\paris\AppData\Local\Temp\pip-pip-egg-info-gykkbzrk\giacpy.egg-info\SOURCES.txt'
      error: package directory 'win64' does not exist
      [end of output]
  note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
× Encountered error while generating package metadata.
╰─> See above for output.
note: This is an issue with the package mentioned above, not pip.
hint: See above for details.
PS C:\Users\paris> python
Python 3.10.8 (tags/v3.10.8:aaaf517, Oct 11 2022, 16:50:30) [MSC v.1933 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from giacpy import *
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'giacpy'
>>> quit()