Skip to content

Commit 790fe6a

Browse files
iannaMoelf
andauthored
docs: add how to install awkward for PyCall.jl (#38)
* docs: add how to install awkward for PyCall.jl * Update src/pycall/README.md Co-authored-by: Jerry Ling <[email protected]> * Update src/pycall/README.md Co-authored-by: Jerry Ling <[email protected]> --------- Co-authored-by: Jerry Ling <[email protected]>
1 parent 4408bab commit 790fe6a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/pycall/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[PyCall](https://github.com/JuliaPy/PyCall.jl) is currently configured to use the Julia-specific Python distribution
2+
installed by the [Conda.jl](https://github.com/JuliaPy/Conda.jl) package.
3+
4+
conda create --name ak-julia
5+
conda activate ak-julia
6+
conda install -c conda-forge awkward
7+
8+
```julia
9+
using Conda
10+
Conda.add("awkward")
11+
```
12+
13+
```julia
14+
using PyCall
15+
16+
const ak = pyimport("awkward")
17+
18+
test() = println(ak.__version__)
19+
20+
test()
21+
2.4.6
22+
```

0 commit comments

Comments
 (0)