Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
terasakisatoshi committed Dec 19, 2023
1 parent 06fcf2c commit e22804a
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
- Install `rye`
- Please follow [the instructions](https://rye-up.com/guide/installation/).


Here is an output from my machine

```console
Expand All @@ -30,7 +29,22 @@ symlink support: true
$ git clone [email protected]:terasakisatoshi/jldev_rye.git
$ cd jldev_rye
$ rye sync
$ julia --project -e 'using Pkg; Pkg.instantiate()'
```

### Run Python Script

Assuming you want to run `file.py`, please use the following command:

```console
$ rye run python file.py
```

### Run Julia Script

Assuming you want to run `file.jl`, please use the following command:

```console
$ julia --project file.jl
```

That's it. Go on to the next section.
Expand Down Expand Up @@ -76,6 +90,7 @@ plt.show()

```python
from matplotlib import pyplot as plt
import juliacall

from jlrye.julia_interface import JLRye
jldf = JLRye.generate_points()
Expand Down

0 comments on commit e22804a

Please sign in to comment.