This function will download and install the AxiDraw python API for use with reticulate. It is necessary to have this installed in order to use any of the functionality in the fawkes package.
install_axidraw(path = NULL, ...)The path to the AxiDraw API. If NULL it will be downloaded automatically.
Arguments passed on to reticulate::py_install
envnameThe name, or full path, of the environment in which Python
packages are to be installed. When NULL (the default), the active
environment as set by the RETICULATE_PYTHON_ENV variable will be used;
if that is unset, then the r-reticulate environment will be used.
methodInstallation method. By default, "auto" automatically finds a method that will work in the local environment. Change the default to force a specific installation method. Note that the "virtualenv" method is not available on Windows.
condaThe path to a conda executable. Use "auto" to allow
reticulate to automatically find an appropriate conda binary.
See Finding Conda and conda_binary() for more details.
python_versionThe requested Python version. Ignored when attempting to install with a Python virtual environment.
pipBoolean; use pip for package installation? This is only relevant
when Conda environments are used, as otherwise packages will be installed
from the Conda repositories.
pip_ignore_installed,ignore_installedBoolean; whether pip should
ignore previously installed versions of the requested packages. Setting
this to TRUE causes pip to install the latest versions of all
dependencies into the requested environment. This ensure that no
dependencies are satisfied by a package that exists either in the site
library or was previously installed from a different–potentially
incompatible–distribution channel. (ignore_installed is an alias for
pip_ignore_installed, pip_ignore_installed takes precedence).