pyjulia icon indicating copy to clipboard operation
pyjulia copied to clipboard

python interface to julia

Results 134 pyjulia issues
Sort by recently updated
recently updated
newest added

I'm writing down the issue so that it is easy to find by the users. At the moment, for PyJulia to load Julia >= 0.7, two conditions have to be...

I just installed pyjulia. Where does the warning below come from? By now, I would expect PyCall users have migrated to the new dot notation. ``` $ python-jl ┌ Warning:...

The current sysimage just installs the latest PyCall from the registry. This adds a `--pycall-env` option which lets you bake in an existing one from any project you want, ```shell...

Hello! I'm currently trying to invoke a julia function via pyjulia, which works great in the serial python case, but causes hanging for some reason when invoked in python multiprocessing...

I am trying to get a first simple example running with JuliaPy, loading a minimal Julia module into Python. Here is the Julia module: ```julia module TestMod export fn function...

question

First of all, thanks a lot for this cool package! I am developping a tool where I need to install programmatically `julia` and `pyjulia` in a `conda` env. This process...

``` Python 3.7.6 | packaged by conda-forge | (default, Mar 23 2020, 23:03:20) [GCC 7.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import julia >>>...

How does one get Pyjulia to call a function that uses Turing and Reverse Diff. I get the following error, included below Also created a MWE here: https://gist.github.com/vyasakanksha/500d611a28e02c18a31923e427138e5b Error: `Stacktrace:...

If in Python I do `import julia.Foo` and `Foo` errors during its `__init__()`, the error message I get in Python is: ``` ImportError: Foo not found ``` which is highly...