-
Notifications
You must be signed in to change notification settings - Fork 229
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
[Feature] Get pip to install juliaup #274
Comments
Sure. You might still want a prompt to ask the user to proceed. You may want to consider https://github.com/johnnychen94/jill.py |
I've been thinking about doing a full switch to PythonCall.jl to simplify things like this, but it sounds like static Python installs might not be supported? JuliaPy/PythonCall.jl#318 (comment)
@cjdoris is this correct? I'm not sure I understand because I had thought all Python binaries installed by conda were static – but the existence of CondaPkg.jl seems to contradict this |
Ok, well strictly all PythonCall needs is a shared libpython (i.e. libpython.so or libpython.dll) and the linkage of the python executable is not relevant. But I assume that if a shared libpython is available then python itself is dynamically linked. Perhaps not. |
It looks like conda packages |
Fixed by #535 |
I’m thinking about how to make PySR even easier to set up and install. The conda side is already automatic which is great; I’m thinking about the pip side now. One idea I had is that, if a user doesn’t have a copy of Julia on their path, then installing PySR with pip could trigger an automatic install of
juliaup
, with a bunch of interactive prompts to ask the user if they want to, where they want to install, etc. Following this, it would automatically runpysr.install()
.Maybe this could even be done on the PyJulia side of things… What do you think @mkitti?
The text was updated successfully, but these errors were encountered: