View source: R/get_installed_python_packages.R
| get_installed_python_packages | R Documentation |
Get the installed Python packages and their versions
get_installed_python_packages( ormr_folder_name = get_default_ormr_folder_name(), python_version = get_default_python_version(), verbose = FALSE )
ormr_folder_name |
can be either |
python_version |
the version of Python used. Use get_default_python_version to get the default Python version. |
verbose |
the verbosity of a function. Set to TRUE for more output. Use check_verbose to detect if this argument is valid. |
a tibble with two rows:
package: the package name
version: the package version
requirement: the packages requirements
channel: the package's channel
Richèl J.C. Bilderbeek
# Local python3
get_installed_python_packages(ormr_folder_name = "python3")
# Conda environment
if (is_conda_installed()) {
get_installed_python_packages()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.