-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06fcf2c
commit e22804a
Showing
1 changed file
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ | |
- Install `rye` | ||
- Please follow [the instructions](https://rye-up.com/guide/installation/). | ||
|
||
|
||
Here is an output from my machine | ||
|
||
```console | ||
|
@@ -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. | ||
|
@@ -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() | ||
|