Is there a simple & OS-independent way to check if Julia is installed? Is it further possible to check ‘on-the-fly’ which Julia version is installed?
My use case: I am running tests of an R package against a Julia package and want to default to not running the tests if I find that Julia is not installed.
Not sure about R but usually these things go like, check if julia is available on the PATH, if not check the normal installation locations for the OS that you’re on. I don’t know from the top of my head what these are but should be easy enough to find out. The version you can then get for example by running versioninfo() in Julia