install_py_pcha.Rd
install_py_pcha
is a helper function that installs py_pcha and numpy python modules into conda environment. Unless you have a strong reason please use suggested defaults. Alternatively, use pip install --user py_pcha numpy scipy datetime.
select_conda
is a helper function that tells R to use python conda environment created specifically for this package using install_py_pcha
. This environment is used by default whe package is loaded. Set options(disable_ParetoTI_envname = TRUE) if you want to use other python installation. Set options(ParetoTI_envname = "other_env_name") if you want to use other conda environment.
install_py_pcha(method = "auto", conda = "auto", python_version = "python 3.7.3", envname = "reticulate_PCHA", overwrite_env = F, extra_packages = character(0), packages = c("pip", "py_pcha", "numpy", "scipy", "datetime"))
method | paratemer for |
---|---|
conda | paratemer for |
python_version | version to be installed into environment that is compatible with py_pcha module. |
envname | name of the conda enviroment where PCHA should be installed. If that enviroment doesn't exist it will be created. If it contains incorrect python_version the function will give an error. |
overwrite_env | It TRUE overwrites conda environment. |
extra_packages | specify python libraries not needed for ParetoTI to work but desirable in the same conda environment |
packages | specify python libraries needed for ParetoTI to work. Normally do not need changing. export PYTHONUSERBASE=/some_dir/python_libs/ python -m pip install --user -i https://pypi.python.org/simple -U pip distribute python -m pip install --user -i https://pypi.python.org/simple --upgrade pip setuptools wheel |
path to python enviroment with py_pcha module installed
# NOT RUN { install_py_pcha() install_py_pcha(extra_packages = c("tensorflow", "pandas", "keras", "h5py", "geosketch", "pydot", "sklearn", "umap-learn")) ## See for installation details # }