mirror of
https://github.com/brentvollebregt/auto-py-to-exe.git
synced 2026-04-26 04:05:49 +03:00
[GH-ISSUE #51] add gevent-websocket to requirements #49
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hstarmans on GitHub (Mar 26, 2019).
Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/51
TLDR
add gevent-websocket to requirements
installed app via
python setup.pyinstallgot error ;
Installed c:\users\riks\appdata\local\programs\python\python36\lib\site-packages\bottle_websocket-0.2.9-py3.6.egg error: The 'bottle' distribution was not found and is required by bottle-websocket, Eel
which i tried to resolve with
pip install bottlewhich gave error;
bottle-websocket 0.2.9 requires gevent-websocket, which is not installed
which i resolved with
pip install gevent-websocketnow it works, dont have executable run with python run.py
@brentvollebregt commented on GitHub (Mar 26, 2019):
So
auto-py-to-exedepends onEelwhich depends onbottle,bottle-websocket,futureandwhichcraft. Looking at the error provided, pip could not findbottlewhichbottle-websocket(and Eel) depends on.I don't understand though that when you tried to install
bottlemanually, it said "bottle-websocket 0.2.9 requires gevent-websocket".bottle-websocketis not a dependency ofbottleso I am unsure why it would appear here.That all aside, this is a dependency found recursively and there is not much point of me adding a dependency to this project which I don't actually use directly. This looks like a general distribution not found error which is a bit out of my control sorry, I have included what is required in the setup.py an I have to trust the dependencies to work correctly.
I'll see if I am able to reproduce this later.
@brentvollebregt commented on GitHub (Mar 26, 2019):
Unable to reproduce Python 3.6.6 Windows 10
@brentvollebregt commented on GitHub (Mar 28, 2019):
Unless we can get more examples of this happening, I am going to hold my assumption that pip is doing this and if not, a dependency is definitely the issue.
I'll close the issue but feel free to provide more information if you have any so we can look into this further.
@hstarmans commented on GitHub (Apr 1, 2019):
Thanks for the reply, I guess it is fine like this as this post will simply pop up as a fix on duck or google. Great project!