You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I downloaded the pygame package using the pip virtual environment, and copied the entire Lib folder generated by the pip virtual environment to the Debug folder and referenced it in the program. However, why would an error be reported?
Steps to Reproduce
Install Ironpython 3.4 in nuget package manager
Run "python - m venv env" to create a python virtual environment
Run "env Scripts activate. bat" to enable the Python virtual environment
Run "pip install pygame" to download the latest package for pygame
Copy the Lib folder under the env folder created by pip to the project output path
Versions
IronPython 3.4
Python 3.9 (64-bit)
The text was updated successfully, but these errors were encountered:
The ImportError you're seeing occurs when the import system fails to find the module (usually because system paths are not properly set). However, pygame uses of C extensions and so won't work with IronPython.
Prerequisites
The issue tracker is used to report bugs and request new features, NOT to ask questions.
Questions should be posted in Discussions or to the users mailing list which can be accessed at
https://ironpython.groups.io/g/users.
Description
I downloaded the pygame package using the pip virtual environment, and copied the entire Lib folder generated by the pip virtual environment to the Debug folder and referenced it in the program. However, why would an error be reported?
Steps to Reproduce
Versions
IronPython 3.4
Python 3.9 (64-bit)
The text was updated successfully, but these errors were encountered: