You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempting to use a shared environment (e.g. julia --project=@shared) does not work when using the @ syntax when calling create_sysimage with the project keyword. For example:
julia --project=@sysimage -e 'using Pkg; Pkg.add("Example")'
julia -e ' using Pkg Pkg.add(PackageSpec(name="PackageCompiler", version="2")) using PackageCompiler create_sysimage(; project="@sysimage", sysimage_path="sysimage.so")'
This can be worked around by specifying the full path to the shared environment (e.g. convert project="@sysimage" to project=joinpath(first(DEPOT_PATH), "environments", "sysimage"))
The text was updated successfully, but these errors were encountered:
Attempting to use a shared environment (e.g.
julia --project=@shared
) does not work when using the@
syntax when callingcreate_sysimage
with theproject
keyword. For example:Which results in the error:
This can be worked around by specifying the full path to the shared environment (e.g. convert
project="@sysimage"
toproject=joinpath(first(DEPOT_PATH), "environments", "sysimage")
)The text was updated successfully, but these errors were encountered: