Skip to content

JuliaPy/pyjulia

Folders and files

NameName
Last commit message
Last commit date
Dec 30, 2023
Dec 30, 2023
Dec 30, 2023
Dec 29, 2023
Oct 25, 2021
Aug 2, 2020
Apr 26, 2019
Apr 26, 2019
Oct 27, 2018
Dec 3, 2017
Apr 25, 2020
Feb 27, 2023
Mar 25, 2019
Dec 3, 2017
Dec 29, 2023
Nov 3, 2022

Repository files navigation

PyJulia

Stable documentation Latest documentation Main workflow DOI

Experimenting with developing a better interface to Julia language that works with Python 3 and Julia v1.4+.

Quick usage

$ python3 -m pip install julia    # install PyJulia
...                               # you may need `--user` after `install`

$ python3
>>> import julia
>>> julia.install()               # install PyCall.jl etc.
>>> from julia import Base        # short demo
>>> Base.sind(90)
1.0

See more in the documentation.