-
Notifications
You must be signed in to change notification settings - Fork 99
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
Can not find SWI-Prolog installed in ubuntu #35
Comments
Same on CentOS, also a linux one. |
@rylanchiu Can you give more information about your environment:
At least on 18.04 there's no problem using pyswip 0.2.7 (latest published on PyPI) with SWI-Prolog 7.6.4 @PaulBrownMagic The SWI-Prolog executable is different in latest versions. Can you check whether you have |
Ran into the same problem and fixed it the same way as @rylanchiu. I'm using the following environment:
Hope this helps |
Similar problem, Ubuntu 16.04, SWI-Prolog version 8.0.1 for x86_64-linux, I found the
I noticed that when importing like |
Fixed by #44 |
I followed by @rylanchiu here yuce#35 (comment) when having errors with the MacOS installation test example. It turns out there were missing hyphens in the arguments to the Popen for swipl. Now that exanoke works for me.
When I change the code to
cmd = Popen(['swipl', '--dump-runtime-variables'], stdout=PIPE)
, it works.The text was updated successfully, but these errors were encountered: