-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
client hangs #26
Comments
I wonder if that could be the same issue as #17. The problem you're facing is similar and you all are running Ubuntu. |
I'm running v12.3 with Python 3.6.9 on Ubuntu. The following works: But I can definitely reproduce a hang with: Notably the following does return an answer, so there might be a separate issue with the second argument of WolframAlpha: |
Solved one of my hangs:
Solved with: I assume that libasound2 should be made an explicit dependency, or an instruction listed. |
Here is the list of dependencies that the FrontEnd requires. Any FrontEnd dependent function eventually need them:
The command to get these:
|
In [1]: from wolframclient.evaluation import WolframLanguageSession
In [2]: from wolframclient.language import wl, wlexpr
In [3]: session = WolframLanguageSession('/opt/WolframEngine/12.1/Executables/WolframKernel')
In [4]: session.evaluate(wl.WolframAlpha("number of moons of Saturn", "Result"))
<<< hangs here indefinitely
In [5]: session.evaluate(wlexpr('Range[5]'))
<<< hangs here indefinitely
Steps:
Ubuntu 18.04.5 LTS
conda version : 4.8.4
python version : 3.7.7.final.0
The text was updated successfully, but these errors were encountered: