Provides Conda environment and package access extension from within Jupyter Notebook and JupyterLab.
This is a fork of the Anaconda nb_conda package. The decision to fork it came due to apparently dead status of the previous package and a need to integrate it within JupyterLab.
Requirements
- conda >= 4.5
- notebook >= 4.3
- JupyterLab 1.x or 2.x (for the jupyterlab extension only)
Starting from 3.4, this extension will use mamba instead of
conda
if it finds it.
To install in the classical notebook:
conda install -c conda-forge jupyter_conda
To install in the JupyterLab:
conda install -c conda-forge jupyterlab jupyter_conda
jupyter labextension install jupyterlab_conda
Optionally, you could install
jupyterlab-tour
to add a help tour for the conda packages manager.
This extensions adds a Conda tab to the Jupyter file browser. Selecting the Conda tab will display:
- A list of the Conda environments that current exist
- The list of Conda packages available in currently configured channels (http://conda.pydata.org/docs/config.html#channel-locations-channels)
- The list of packages installed in the selected environment.
You can click on the name of an environment to select it. That will allow you to:
- see the packages installed in the environment
- install new packages from the available package list
- check for updates on selected (or all) packages
- update selected (or all) packages in the environment.
This extension adds a Conda Packages item to the Kernel menu. Selecting this item displays the list of Conda packages in the environment associated with the running kernel, and the list of available packages. You can perform the same actions as in the Conda tab, but only against the current environment.
This extension add a new entry Conda Packages Manager in the Settings menu.
The first time, it can take quite some time to build the available packages list. But once it is obtained, it will be cached and updated to the background to have a smoother user experience.
There are three ways to create an environment:
-
Create a new environment Use the New Environment button at the top of the page, and select
Python 3
, orR
to create a base environment with the corresponding packages. Note that if you want to run a Jupyter python kernel in the new environment, you must also install theipykernel
package in the environment. -
Clone an existing environment Click the clone button next to an environment in the list, and enter the desired name of the new environment.
-
Import an exported environment from a YAML file
conda create -y -n jupyter_conda python jupyterlab~=2.1
conda install -y -n jupyter_conda --file requirements_dev.txt -c conda-forge
source activate jupyter_conda
python setup.py develop
jupyter nbextension install jupyter_conda --py --sys-prefix --symlink
jupyter nbextension enable jupyter_conda --py --sys-prefix
jupyter serverextension enable jupyter_conda --py --sys-prefix
cd labextension
jupyter labextension install .
The navigator/
subfolder contains an experimental standalone navigator application.
Open Mamba Navigator:
Open JupyterLab:
# activate the environment created above
conda activate jupyter_conda
# go to the navigator folder
cd navigator/
# install the dependencies
jlpm
# build the application
jlpm run build
# start the app
python main.py
# or with the --no-browser option
python main.py --no-browser
The app will open in the browser at http://localhost:8888.
There is also a watch script to automatically rebuild the application when there is a new change:
jlpm run watch
- Features
- Depend optionally on
nb_conda_kernels
- Depend optionally on
- Features
- Better logger
- Bugs
- Reduce UI freezing time by running expensive code in asynchronous executor
- Features
- Use
mamba
if available. Otherwise useconda
#48 - Move to GitHub workflow (extend coverage to JupyterLab code)
- Use
- Bugs
- Bugs
- Fix export always from history (settings ignored)
- Features
- Add a settings
fromHistory
to export an environment using--from-history
(available for conda >= 4.7.12) #39
- Add a settings
- Bugs
- Documentation
- Start REST API description with Swagger
-
Available package cache file is now writable for everybody to avoid trouble in multi-user context. #25
-
Add update environment from file through REST endpoint PATCH /environments/ #26
-
Switch to newer Python syntax async-await
-
To improve UI reactivity in Jupyterlab:
- Long running task can now be cancelled #32
- The available packages list is used to find updatable package. conda update --dry-run --all is not used any longer. But it is still used if the user request updating all possible packages.
- Request environment list accept now
whitelist
=0 or 1 query arguments. If 1, the environment list is filtered to respectKernelSpecManager.whitelist
. Default is 0, but it could be modified in user settings. - JupyterLab extension
IEnvironmentManager.getPackageManager()
returns always the sameConda.IPackageManager
otherwise signaling package operations would have been meaningless.- Add ability to specify kernel companions; i.e. check that if some packages are installed in a kernel, they must respect a certain version range. Companions can be specified through user settings.
- Small UI tweaks
- Rework the server/client API to be more RESTful and returns 202 status for long operations
- Cache available packages list in temp directory
- Improve greatly the coverage for the server extension
- JupyterLab extension only:
- Allow the user to change the proposed environment when creating one from scratch
- Add signals to handle environnements and packages changes (see
labextension\src\__tests__\services.spec.ts
) - Improve the UI reactivity by using
react-virtualized
for the packages list - Improve the look and feel
- Available packages truncation has been removed.
- Catch SSLError when requesting
channeldata.json
file
- Export in YAML format the environment (import in the older format is still supported).
- Improve responsiveness by loading first installed packages. Then request available one.
- BUG error is prompt when an environment is deleted although everything went well
- Cache some API requests (GET environments, GET channels and GET available packages).
- Available packages are now truncated to 100.
- Use query argument
$skip
to skip N first packages - If the list is longer than 100, a entry
$next
in the response is returned. This is the request url to use to get the next batch of packages.
- Use query argument
- Report full error message in web browser console to ease debugging.
- BUG environment not shown
- BUG Installing package in develop mode fails if in user home or containing spaces
- Improve error feedback from API to frontend
- BUG
conda search
crashes for conda 4.6
- Add installation of package in development mode (through
pip
)
- Add JupyterLab extension inspired by Anaconda Navigator
- Retrieve conda package description
- Add link to package website (if available)
- Support conda >=4.5
- Make all conda request asynchronously
- Use the automatic installation for Jupyter Notebook extension (see here)
- fix bug in check updates feature
- support conda 4.3
- support notebook security fix introduced in notebook 4.3.1
- fix environment export button
- allow environment names with one letter and validate against "suspicious" characters
- update to new jupyter_conda_kernels naming scheme
- namespace all API calls into
/conda/
- fix usage in root environment
- minor build changes
- Update to notebook 4.2