Skip to content

Commit 8508690

Browse files
authored
Update README.md
1 parent 63f1d30 commit 8508690

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,34 @@
1212

1313
A Python wrapper using JuliaPy for the PDDL.jl package. It implements Planners (Best-First, Breadth-First, Depth-First) as class methods. Easy to use even in REFL mode. The AutomatedPlanner class is clear and understandable, easy to contribute to.
1414

15+
# Dependencies
16+
17+
- Install Python (3.7.5 is the tested version)
18+
19+
- Install Julia
20+
21+
```bash
22+
$ wget https://julialang-s3.julialang.org/bin/linux/x64/1.5/julia-1.5.2-linux-x86_64.tar.gz
23+
$ tar -xvzf julia-1.5.2-linux-x86_64.tar.gz
24+
$ sudo cp -r julia-1.5.2 /opt/
25+
$ sudo ln -s /opt/julia-1.5.2/bin/julia /usr/local/bin/julia
26+
```
27+
28+
- Install Julia dependencies
29+
30+
```bash
31+
$ julia --color=yes -e 'using Pkg; Pkg.add(Pkg.PackageSpec(path="https://github.com/APLA-Toolbox/PDDL.jl"))'
32+
$ julia --color=yes -e 'using Pkg; Pkg.add(Pkg.PackageSpec(path="https://github.com/JuliaPy/PyCall.jl"))'
33+
```
34+
35+
- Install Python dependencies
36+
37+
```bash
38+
$ python3 -m pip install --upgrade pip
39+
$ python3 -m pip install julia
40+
$ python3 -m pip install pycall
41+
```
42+
1543
# REFL Mode
1644

1745
- Clone the repository: `git clone https://github.com/APLA-Toolbox/pyjulia-pddl`

0 commit comments

Comments
 (0)