简体   繁体   中英

problem with install pySFML pip install pySFML windows python 3.9, 3.7

I try to install

(env_py) PS D:\github\env_py\Scripts> pip install pySFML

After that I have:

ERROR: Could not find a version that satisfies the requirement pySFML (from versions: none)

ERROR: No matching distribution found for pySFML

I am using python 3.9 and 3.7 on windows And there is the same problem

THANKS!

The package name seems to be sfml , not pySFML .

Try

pip install sfml

pip install pySFML doesnot work anymore. The best way is to download the wheel from the below link and install it through wheel file

https://www.lfd.uci.edu/~gohlke/pythonlibs/#pysfml

To install the wheel file just go to the directory where you have downloaded the file and then just do

pip install xyz.wheel 

Another way, on linux sudo aptitude install python3-sfml

It is work I can

import sfml but on windows I still can not install

https://www.sfml-dev.org/download/bindings.php

Extract the archive, and copy the files to your installation of Python. If you don't know where it's located, by default it should be "C:\Python26" on Windows or "/usr/lib/python2.6" on Linux.

Once the files are properly installed, you're ready to use PySFML.amd following command python setup.py build

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM