I'm building a script for installing my software in a production environment on a VM. I found that if I copy my REQUIRE file over there, everything works fine, except for RMath.jl, which is missing make and gcc. I could install them as part of my script
apt-get -y install make
apt-get -y install gcc
but it would be cleaner if it was handled as part of RMath's dependencies.
I'm building a script for installing my software in a production environment on a VM. I found that if I copy my REQUIRE file over there, everything works fine, except for RMath.jl, which is missing
make
andgcc
. I could install them as part of my scriptbut it would be cleaner if it was handled as part of RMath's dependencies.