-
Notifications
You must be signed in to change notification settings - Fork 50
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
Installation trouble #85
Comments
Did you install with 'python setup.py install' at the py-causal folder? Try to call it at python prompt. I think conda installs the library in a different place. If you want to run it on Jupyter notebook, try it on Docker: https://hub.docker.com/r/chirayukong/py-causal-notebook. |
I get similar results from running setup.py and from running
Is a missing |
Like I said, I'm not on Ubuntu :) I have some experience hacking things together in Python, and absolutely none in Java. Do I need to install the JDK in order to run your package? If so, it would be helpful to indicate that in the installation instructions. Do I want Java 11 or Java 12, OpenJDK or Sun, does any of that matter, etc.? |
Definitely, you do need JDK. The library was coded in Java. OpenJDK or Oracle should do the trick as long as its version is 8 or more. |
I had trouble installing through Anaconda. I ran through the steps described in the "Anaconda/Jupyter" section of the Readme, and found that I was able to import pydot, but not graphviz (not sure if this matters?) or pycausal.
The output from
conda list
included the following:At this point I could import pydot, but not graphviz or pycausal.
Poking around a little bit, it sounded like
conda install graphviz
doesn't install python bindings for graphviz, so I ranpip install graphviz
.conda list
now includesand I can now
import graphviz
successfully. Unfortunately, pycausal is still borked:Any guidance?
The text was updated successfully, but these errors were encountered: