module installcustom.install_custom_julia

Short summary

module pymyinstall.installcustom.install_custom_julia

Various functions to install Julia.

source on GitHub

Functions

function

truncated documentation

get_julia_version

returns the version of installed R, we only focus on the x64 version

install_julia

Install R. It does not do it a second time if it is already installed.

IsJuliaInstalled

Documentation

Various functions to install Julia.

source on GitHub

pymyinstall.installcustom.install_custom_julia.IsJuliaInstalled()
Returns:

True of False whether or not it was installed

source on GitHub

pymyinstall.installcustom.install_custom_julia.get_julia_version()

returns the version of installed R, we only focus on the x64 version

Returns:

tuple (bin, version), None if R is not installed

source on GitHub

pymyinstall.installcustom.install_custom_julia.install_julia(temp_folder='.', fLOG=<built-in function print>, install=True, force_download=False, version=None)

Install R. It does not do it a second time if it is already installed.

Parameters:
  • temp_folder – where to download the setup

  • fLOG – logging function

  • install – install (otherwise only download)

  • force_download – force the downloading of Julia

  • version – version to download (unused)

Returns:

temporary file

source on GitHub