We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc625d6 commit 2819426Copy full SHA for 2819426
README.md
@@ -49,7 +49,9 @@ can change the Python version by setting the `PYTHON` environment variable
49
to the path of the `python` (or `python3` etc.) executable and then re-running `Pkg.build("PyCall")`.
50
In Julia:
51
52
- ENV["PYTHON"] = "... path of the python program you want ..."
+ ENV["PYTHON"] = "... path of the python executable ..."
53
+ # ENV["PYTHON"] = "C:\\Python37-x64\\python.exe" # example for Windows
54
+ # ENV["PYTHON"] = "/usr/bin/python3.7" # example for *nix
55
Pkg.build("PyCall")
56
57
Note also that you will need to re-run `Pkg.build("PyCall")` if your
0 commit comments