mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
adding content to docs
This commit is contained in:
@@ -114,6 +114,22 @@ environment from conda-forge.
|
|||||||
'iris',
|
'iris',
|
||||||
'dask',
|
'dask',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
By default packages are only installed from the ``conda-forge`` channel.
|
||||||
|
If you need other channels, like ``bioconda`` or self-made channels,
|
||||||
|
they can be added by using the ``tljh_extra_user_conda_channels`` hook.
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from tljh.hooks import hookimpl
|
||||||
|
|
||||||
|
@hookimpl
|
||||||
|
def tljh_extra_user_conda_channels():
|
||||||
|
return [
|
||||||
|
'conda-forge',
|
||||||
|
'bioconda',
|
||||||
|
'fastai',
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
Publishing plugins
|
Publishing plugins
|
||||||
|
|||||||
Reference in New Issue
Block a user