julia and the conda libraries
Environments with julia often seem to have trouble with Pkg.install() and other commands with
1ERROR: Unable to load dependent library /home/rgoswami/Git/Github/Julia/ChemGP/.pixi/envs/docs/bin/../lib/julia/libopenlibm.so
2Message:/home/rgoswami/Git/Github/Julia/ChemGP/.pixi/envs/docs/bin/../lib/julia/libopenlibm.so: cannot enable executable stack as shared object requires: Invalid argument
Not sure why this happens yet, but the fix is:
1# needs to be set for each env!
2execstack -c ./.pixi/envs/default/lib/julia/libopenlibm.so
3# e.g. for a doc env...
4execstack -c ./.pixi/envs/doc/lib/julia/libopenlibm.so
Comments
