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 b6c514a commit 0e8fa2aCopy full SHA for 0e8fa2a
juliacall/init.py
@@ -77,6 +77,7 @@
77
break
78
# If no such version, install it
79
if exepath is None:
80
+ print("Installing Julia version {} to {!r}".format(exever, jlbin))
81
os.makedirs(jldownload, exist_ok=True)
82
d = os.getcwd()
83
p = os.environ.get("PATH")
@@ -86,7 +87,7 @@
86
87
else:
88
os.environ["PATH"] += os.pathsep + jlbin
89
os.chdir(jldownload)
- jli.install_julia(confirm=True, install_dir=jlinstall, symlink_dir=jlbin)
90
+ jli.install_julia(version=exever, confirm=True, install_dir=jlinstall, symlink_dir=jlbin)
91
finally:
92
if p is None:
93
del os.environ["PATH"]
0 commit comments