PythonCall.jl
                                
                                 PythonCall.jl copied to clipboard
                                
                                    PythonCall.jl copied to clipboard
                            
                            
                            
                        Python and Julia in harmony.
## Python ```python $ /cvmfs/icecube.opensciencegrid.org/py3-v4.1.1/RHEL_7_x86_64/bin/python3 Python 3.7.5 (default, Jul 24 2020, 21:48:49) [GCC 9.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import photospline >>> ```...
IOError: could not spawn `'H:\.julia\environments\v1.9\.CondaPkg\env\python.exe' --version`: no such file or directory (ENOENT) It looks like the python executable isn't there at all after "add PythonCall" - any ideas why this...
**Is your feature request related to a problem? Please describe.** I have julia code which catches errors and adds context. For example: ```julia d = Dict() try d["missing key"] catch...
From within Pluto, `pyprint("hello world!")` does not immediately print to the terminal running the Pluto server. Also, if one uses `PlutoUI` and `with_terminal() do ...`, the output also does not...
I am using the python package `juliacall` and am surprised to find that it ignores `JULIA_PROJECT` environment variable. [Julia documentation about JULIA_PROJECT](https://docs.julialang.org/en/v1/manual/environment-variables/#JULIA_PROJECT). It would be great if this standard variable...
I see in the `PyMacro` file there is a todo item for adding the `with` syntax. Is there any alternative currently?
Adds a package extension for reading and writing `Py` and `PyException` using JLD2.jl. Fixes #406. - [ ] add tests - [ ] release notes - [ ] documentation -...
Closes #405. We can hopefully remove all these strong dependencies. - [ ] Dates - [ ] ~~Markdown~~: needed for interactive help (probably always loaded by Julia anyway) - [x]...
**Affects:** JuliaCall **Describe the bug** When using a conda/mamba environment and juliacall I encountered an issue when NetCDF files are read by the julia code. When trying to read the...
We can avoid calling C functions in some common cases as an optimisation. e.g. Py_IncRef_Fast can just increment the refcount. e.g. Py_DecRef_Fast can just decrement the refcount provided it is...