Questions sur l'installation et la configuration de Manjaro Linux.
Répondre

No matching distribution found for pygame

#1Messageil y a 9 ans

becane : manjaro linux 32 bits (basée sur archlinux)
Yop,
J'ai voulu faire tourner le projet pythoria
Donc je load le code, avec :

    git clone https://github.com/dangillet/Pythoria


Ensuite je me place dans le dossier contenant le code et exécute le main (pour tester le code) :

    python3 main.py 
    Traceback (most recent call last):
      File "main.py", line 5, in <module>
        import pygcurse, pygame
    ImportError: No module named 'pygcurse'


Humm apparement j'ai besoin de pygcurse (et oui l'auteur a eu la flemme de documenter son readme...)
Donc je l'installe :

    sudo pip install pygcurse
    Collecting pygcurse
      Downloading Pygcurse-0.9.0.zip (55kB)
        100% |████████████████████████████████| 57kB 384kB/s
        Complete output from command python setup.py egg_info:
        Traceback (most recent call last):
          File "<string>", line 20, in <module>
          File "/tmp/pip-build-V1ov7h/pygcurse/setup.py", line 6, in <module>
            version = __import__('pygcurse').__version__
          File "pygcurse/__init__.py", line 60, in <module>
            import pygame
        ImportError: No module named pygame

L'installe foire, Ah oui encore une dépendance qui apparaît , il faut pygame !

Donc je m'en vais installer pygame de ce pas :

    sudo pip2 install pygame
    Collecting pygame
      Could not find a version that satisfies the requirement pygame (from versions: )
      Some externally hosted files were ignored as access to them may be unreliable (use --allow-external pygame to allow).
      No matching distribution found for pygame


...Second try :

    sudo pip2 install python-pygame
    [sudo] password for boblinux:
    Collecting python-pygame
      Could not find a version that satisfies the requirement python-pygame (from versions: )
      No matching distribution found for python-pygame


A partir de là je sèche !
Dernière modification par boblinuxil y a 9 ans, modifié au total 1 fois.

No matching distribution found for pygame

#2Messageil y a 9 ans

Bonjour,

:saispas:

yaourt -S python-pygame-hg

No matching distribution found for pygame

#3Messageil y a 9 ans

Pygcurse aussi est disponible dans AUR...

No matching distribution found for pygame

#4Messageil y a 9 ans

merci fixed

No matching distribution found for pygame

#5Messageil y a 9 ans

Bonjour

Inutile de rajouter la mention RESOLU dans le titre, l’icône (coche verte) suffit. J'ai corrigé.

No matching distribution found for pygame

#6Messageil y a 9 ans

Oki j'avais un doute mais j'me suis qu'il valait mieux prévenir que guerir =D, encore merci à tous
Répondre