Skip to content

Commit

Permalink
docs: add how to install awkward for PyCall.jl (#38)
Browse files Browse the repository at this point in the history
* docs: add how to install awkward for PyCall.jl

* Update src/pycall/README.md

Co-authored-by: Jerry Ling <proton@jling.dev>

* Update src/pycall/README.md

Co-authored-by: Jerry Ling <proton@jling.dev>

---------

Co-authored-by: Jerry Ling <proton@jling.dev>
  • Loading branch information
ianna and Moelf authored Nov 15, 2023
1 parent 4408bab commit 790fe6a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/pycall/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[PyCall](https://github.com/JuliaPy/PyCall.jl) is currently configured to use the Julia-specific Python distribution
installed by the [Conda.jl](https://github.com/JuliaPy/Conda.jl) package.

conda create --name ak-julia
conda activate ak-julia
conda install -c conda-forge awkward

```julia
using Conda
Conda.add("awkward")
```

```julia
using PyCall

const ak = pyimport("awkward")

test() = println(ak.__version__)

test()
2.4.6
```

0 comments on commit 790fe6a

Please sign in to comment.