system_file
system_file(package='file')Get the path where a python package is installed
Parameters
| Name | Type | Description | Default |
|---|---|---|---|
| package | str | str with the name of the package | 'file' |
Returns
| Name | Type | Description |
|---|---|---|
| str | a str with the path where the python package is installed |
Examples
>>> from rlike import *
>>> x = system_file('rlike')
>>> x = system_file('importlib_resources')