Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 980 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 980 Bytes

PyJulia

Latest documentation Build Status Build status

Experimenting with developing a better interface to Julia language that works with Python 2 & 3 and Julia v0.6+.

Quick usage

$ julia                                  # install PyCall.jl
...
julia> using Pkg  # for julia ≥ 0.7
julia> Pkg.add("PyCall")
...
julia> exit()

$ python3 -m pip install --user julia    # install PyJulia
...

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

See more in the documentation.