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 would like to distribute a small python app that uses rethinkdb on Windows. I have some experience using cx_freeze for this sort of tasks so I gave it a try (with latest Python 3.8, rethinkdb-python and cx_freeze modules).
Unfortunately the packaging doesn't work atm, the packaged version fails to initialize with an error doesn't support asyncio loop type (my project does use asyncio - it would probably be a different loop type error for other loop types).
It appears the net_asyncio and other modules are not being packaged.
The text was updated successfully, but these errors were encountered:
I just got back to this. What do you mean by "It appears the net_asyncio and other modules are not being packaged."? I just downloaded the files from PyPi, extracted it and as I can see, every file is there including net_asyncio.py.
cx_freeze is a tool for distribution of python software. In particular on Windows, it pulls python's executables and shared libraries together, as well as your compiled modules and dependencies, and puts everything together in such a way that it can run on any Windows machine, and not require Python installed beforehand.
I would like to distribute a small python app that uses rethinkdb on Windows. I have some experience using cx_freeze for this sort of tasks so I gave it a try (with latest Python 3.8, rethinkdb-python and cx_freeze modules).
Unfortunately the packaging doesn't work atm, the packaged version fails to initialize with an error
doesn't support asyncio loop type
(my project does use asyncio - it would probably be a different loop type error for other loop types).It appears the
net_asyncio
and other modules are not being packaged.The text was updated successfully, but these errors were encountered: