Skip to content

Commit 36bcd3a

Browse files
authored
Update README.md
1 parent ee7c8f2 commit 36bcd3a

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,29 @@ Includes calls to Xfoil, AirfoilPreppy, and the interpolations packages.
88
- Python 3
99
- matplotlib
1010
- mpmath
11+
- scipy
1112

1213

1314
### Setting up PyCall
15+
1416
The airfoilprep.py package (wrapped by the AirfoilPrep.jl package) is written in Python 3.8, so make sure that the Python version linked to PyCall.jl is 3.8. After installing PyCall (] add PyCall), you can do this by running the following:
1517

16-
```import Pkg
18+
``` shell
19+
import Pkg
1720
Pkg.add("PyCall")
1821
ENV["PYTHON"] = "path/to/your/python3"
19-
Pkg.build("PyCall")```
22+
Pkg.build("PyCall")
23+
```
2024

2125
Then close and reopen the Julia REPL, and run:
2226

23-
```import PyCall
24-
PyCall.pyversion```
27+
``` shell
28+
import PyCall
29+
PyCall.pyversion
30+
```
2531

2632
which should reveal your Python version:
2733

28-
```v"3.8"```
34+
``` shell
35+
v"3.8"
36+
```

0 commit comments

Comments
 (0)