jupyterlab-conda-store


Namejupyterlab-conda-store JSON
Version 2024.3.1 PyPI version JSON
download
home_page
SummaryA JupyterLab extension that provides a user-friendly graphical interface for building and managing environments using an existing conda-store server
upload_time2024-03-12 19:08:03
maintainer
docs_urlNone
author
requires_python>=3.8
licenseBSD 3-Clause License Copyright (c) 2022, conda-store development team All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords jupyter jupyterlab jupyterlab4 conda environments
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # jupyterlab-conda-store

<div align="center">
  <img src="https://raw.githubusercontent.com/conda-incubator/conda-store/main/docusaurus-docs/community/assets/logos/conda-store-logo-vertical-lockup.svg" alt="conda-store logo" width="30%">
</div>

---

| Information | Links                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| :---------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Project     | [![License](https://img.shields.io/badge/License-BSD%203--Clause-gray.svg?&colorB=298642&style=flat.svg)](https://opensource.org/licenses/BSD-3-Clause) [![conda-store documentation](https://img.shields.io/badge/conda--store-documentation%20📖-gray.svg?&colorB=298642&style=flat.svg)][conda-store-docs] [![conda-store-ui documentation](https://img.shields.io/badge/conda--store--UI-documentation%20📖-gray.svg?&colorB=298642&style=flat.svg)][conda-store-ui-docs] |
| Workflows   | [![Build extension](https://github.com/conda-incubator/jupyterlab-conda-store/actions/workflows/build.yml/badge.svg)](https://github.com/conda-incubator/jupyterlab-conda-store/actions/workflows/build.yml) [![Make PyPI release](https://github.com/conda-incubator/jupyterlab-conda-store/actions/workflows/release.yml/badge.svg)](https://github.com/conda-incubator/jupyterlab-conda-store/actions/workflows/release.yml)                                               |
| Releases    | ![GitHub release (the latest by date)](https://img.shields.io/github/v/release/conda-incubator/jupyterlab-conda-store?logo=Github) ![PyPI releases](https://img.shields.io/pypi/v/jupyterlab-conda-store)                                                                                                                                                                                                                                                                     |

---

A JupyterLab extension for [conda-store][conda-store-repo].

> [!NOTE]
> This extension is only compatible with JupyterLab `>= 4.0`.

## Installation 📦

### Pre-requisites

You will need to have [conda-store][conda-store-repo] installed and running on your local computer to use this extension. As well as:

- `JupyterLab >= 4.0`
- Python `>= 3.8`

You can install the extension with pip:

```bash
pip install jupyterlab-conda-store
```

To remove the extension, execute:

```bash
pip uninstall jupyterlab-conda-store
```

## Installing the development version 🚀

### Pre-requisites

1. You will need to have [NodeJS `> 18`](https://nodejs.org/en/download/) installed on your local computer to build the extension package.
2. Python `>= 3.8` and `pip`.

### Building and linking the extension

> [!NOTE]
> The `jlpm` command is JupyterLab's pinned version of [yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use`yarn` or `npm` in lieu of `jlpm` in the commands below.

1. Clone this repository to your local computer:

   ```bash
   git clone https://github.com/conda-incubator/jupyterlab-conda-store.git
   ```

2. Change to the `jupyterlab-conda-store` directory:

   ```bash
    cd jupyterlab-conda-store
   ```

3. Optional but recommended - Create and activate a development environment with conda:

   ```bash
   # Create environment named `jupyterlab-conda-store`
   conda create -n jupyterlab-conda-store
   conda activate jupyterlab-conda-store
   ```

4. Install JupyterLab and NodeJS **if not installed**:

   ```bash
   # Install node and jupyterlab from conda-forge
   conda install -c conda-forge 'nodejs>16' 'jupyterlab>=4'
   ```

5. Install the package in development mode:

   ```bash
   pip install -e .
   ```

6. Now you'll need to link the development version of the extension to JupyterLab and rebuild the Typescript source:

   ```bash
   # Link your development version of the extension with JupyterLab
   jupyter labextension develop . --overwrite
   ```

7. On the first installation, or after making some changes, to visualize them in your local JupyterLab re-run the following command:

   ```bash
   # Rebuild extension Typescript source after making changes
   jlpm build
   ```

8. Run JupyterLab and check that the installation worked:

```bash
# Run JupyterLab
jupyter lab
```

### Uninstalling the development version

1. Remove the extension:

   ```bash
   pip uninstall jupyterlab-conda-store
   ```

2. In development mode, you will also need to remove the symlink created by `jupyter labextension develop`
   command. To find its location, you can run `jupyter labextension list` to figure out where the `labextensions`
   folder is located. Then you can remove the symlink named `jupyterlab-conda-store` within that folder.

## Release

To create a jupyterlab-conda-store release:

1. Open a `new_release` issue in the [repository][jupyterlab-conda-store-repo] and fill in the release details.
2. Follow the steps in the new release checklist.

> [!TIP]
> Follow the steps in [RELEASE.md](./RELEASE.md) to ensure all is working as expected.

## Code of Conduct 🤝

To guarantee a welcoming and friendly community, we require all community members to follow our [Code of Conduct](https://github.com/conda-incubator/governance/blob/main/CODE_OF_CONDUCT.md).

## License 📃

jupyterlab-conda-store is developed under the [BSD 3-Clause License](./LICENSE).

<!-- reusable links -->

[conda-store-docs]: https://conda.store/en/latest/
[conda-store-ui-docs]: https://conda-incubator.github.io/conda-store-ui/?path=/story/welcome--page
[conda-store-repo]: https://github.com/conda-incubator/conda-store
[jupyterlab-conda-store-repo]: https://github.com/conda-incubator/jupyterlab-conda-store

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "jupyterlab-conda-store",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Tania Allard <trallard@bitsandchips.me>",
    "keywords": "Jupyter,JupyterLab,JupyterLab4,conda,environments",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/e1/d3/1679b3c2000c3b7a84106c08b0504087cbb708202fdd37e14bb0b7b060e3/jupyterlab_conda_store-2024.3.1.tar.gz",
    "platform": null,
    "description": "# jupyterlab-conda-store\n\n<div align=\"center\">\n  <img src=\"https://raw.githubusercontent.com/conda-incubator/conda-store/main/docusaurus-docs/community/assets/logos/conda-store-logo-vertical-lockup.svg\" alt=\"conda-store logo\" width=\"30%\">\n</div>\n\n---\n\n| Information | Links                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |\n| :---------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| Project     | [![License](https://img.shields.io/badge/License-BSD%203--Clause-gray.svg?&colorB=298642&style=flat.svg)](https://opensource.org/licenses/BSD-3-Clause) [![conda-store documentation](https://img.shields.io/badge/conda--store-documentation%20\ud83d\udcd6-gray.svg?&colorB=298642&style=flat.svg)][conda-store-docs] [![conda-store-ui documentation](https://img.shields.io/badge/conda--store--UI-documentation%20\ud83d\udcd6-gray.svg?&colorB=298642&style=flat.svg)][conda-store-ui-docs] |\n| Workflows   | [![Build extension](https://github.com/conda-incubator/jupyterlab-conda-store/actions/workflows/build.yml/badge.svg)](https://github.com/conda-incubator/jupyterlab-conda-store/actions/workflows/build.yml) [![Make PyPI release](https://github.com/conda-incubator/jupyterlab-conda-store/actions/workflows/release.yml/badge.svg)](https://github.com/conda-incubator/jupyterlab-conda-store/actions/workflows/release.yml)                                               |\n| Releases    | ![GitHub release (the latest by date)](https://img.shields.io/github/v/release/conda-incubator/jupyterlab-conda-store?logo=Github) ![PyPI releases](https://img.shields.io/pypi/v/jupyterlab-conda-store)                                                                                                                                                                                                                                                                     |\n\n---\n\nA JupyterLab extension for [conda-store][conda-store-repo].\n\n> [!NOTE]\n> This extension is only compatible with JupyterLab `>= 4.0`.\n\n## Installation \ud83d\udce6\n\n### Pre-requisites\n\nYou will need to have [conda-store][conda-store-repo] installed and running on your local computer to use this extension. As well as:\n\n- `JupyterLab >= 4.0`\n- Python `>= 3.8`\n\nYou can install the extension with pip:\n\n```bash\npip install jupyterlab-conda-store\n```\n\nTo remove the extension, execute:\n\n```bash\npip uninstall jupyterlab-conda-store\n```\n\n## Installing the development version \ud83d\ude80\n\n### Pre-requisites\n\n1. You will need to have [NodeJS `> 18`](https://nodejs.org/en/download/) installed on your local computer to build the extension package.\n2. Python `>= 3.8` and `pip`.\n\n### Building and linking the extension\n\n> [!NOTE]\n> The `jlpm` command is JupyterLab's pinned version of [yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use`yarn` or `npm` in lieu of `jlpm` in the commands below.\n\n1. Clone this repository to your local computer:\n\n   ```bash\n   git clone https://github.com/conda-incubator/jupyterlab-conda-store.git\n   ```\n\n2. Change to the `jupyterlab-conda-store` directory:\n\n   ```bash\n    cd jupyterlab-conda-store\n   ```\n\n3. Optional but recommended - Create and activate a development environment with conda:\n\n   ```bash\n   # Create environment named `jupyterlab-conda-store`\n   conda create -n jupyterlab-conda-store\n   conda activate jupyterlab-conda-store\n   ```\n\n4. Install JupyterLab and NodeJS **if not installed**:\n\n   ```bash\n   # Install node and jupyterlab from conda-forge\n   conda install -c conda-forge 'nodejs>16' 'jupyterlab>=4'\n   ```\n\n5. Install the package in development mode:\n\n   ```bash\n   pip install -e .\n   ```\n\n6. Now you'll need to link the development version of the extension to JupyterLab and rebuild the Typescript source:\n\n   ```bash\n   # Link your development version of the extension with JupyterLab\n   jupyter labextension develop . --overwrite\n   ```\n\n7. On the first installation, or after making some changes, to visualize them in your local JupyterLab re-run the following command:\n\n   ```bash\n   # Rebuild extension Typescript source after making changes\n   jlpm build\n   ```\n\n8. Run JupyterLab and check that the installation worked:\n\n```bash\n# Run JupyterLab\njupyter lab\n```\n\n### Uninstalling the development version\n\n1. Remove the extension:\n\n   ```bash\n   pip uninstall jupyterlab-conda-store\n   ```\n\n2. In development mode, you will also need to remove the symlink created by `jupyter labextension develop`\n   command. To find its location, you can run `jupyter labextension list` to figure out where the `labextensions`\n   folder is located. Then you can remove the symlink named `jupyterlab-conda-store` within that folder.\n\n## Release\n\nTo create a jupyterlab-conda-store release:\n\n1. Open a `new_release` issue in the [repository][jupyterlab-conda-store-repo] and fill in the release details.\n2. Follow the steps in the new release checklist.\n\n> [!TIP]\n> Follow the steps in [RELEASE.md](./RELEASE.md) to ensure all is working as expected.\n\n## Code of Conduct \ud83e\udd1d\n\nTo guarantee a welcoming and friendly community, we require all community members to follow our [Code of Conduct](https://github.com/conda-incubator/governance/blob/main/CODE_OF_CONDUCT.md).\n\n## License \ud83d\udcc3\n\njupyterlab-conda-store is developed under the [BSD 3-Clause License](./LICENSE).\n\n<!-- reusable links -->\n\n[conda-store-docs]: https://conda.store/en/latest/\n[conda-store-ui-docs]: https://conda-incubator.github.io/conda-store-ui/?path=/story/welcome--page\n[conda-store-repo]: https://github.com/conda-incubator/conda-store\n[jupyterlab-conda-store-repo]: https://github.com/conda-incubator/jupyterlab-conda-store\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License  Copyright (c) 2022, conda-store development team All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
    "summary": "A JupyterLab extension that provides a user-friendly graphical interface for building and managing environments using an existing conda-store server",
    "version": "2024.3.1",
    "project_urls": {
        "Homepage": "https://github.com/conda-incubator/jupyterlab-conda-store",
        "Repository": "https://github.com/conda-incubator/jupyterlab-conda-store"
    },
    "split_keywords": [
        "jupyter",
        "jupyterlab",
        "jupyterlab4",
        "conda",
        "environments"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a59a151f763db2b226cae92fddd36d8a8d99e4bd48456f8da0299e3bc705369",
                "md5": "98cc322f9483b5544621161afbacd46e",
                "sha256": "90f8b503553584d218cb1982d04d46a7b2ea0ae2bf01cc10a73fe2218f25d10b"
            },
            "downloads": -1,
            "filename": "jupyterlab_conda_store-2024.3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "98cc322f9483b5544621161afbacd46e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 621224,
            "upload_time": "2024-03-12T19:08:01",
            "upload_time_iso_8601": "2024-03-12T19:08:01.737989Z",
            "url": "https://files.pythonhosted.org/packages/2a/59/a151f763db2b226cae92fddd36d8a8d99e4bd48456f8da0299e3bc705369/jupyterlab_conda_store-2024.3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1d31679b3c2000c3b7a84106c08b0504087cbb708202fdd37e14bb0b7b060e3",
                "md5": "65553f3d7f6514eb05a93b77cbe48b0c",
                "sha256": "48f76c31231f8913422fd5f4b942fb3be5814111de481eefcbb5c3b6861f7c71"
            },
            "downloads": -1,
            "filename": "jupyterlab_conda_store-2024.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "65553f3d7f6514eb05a93b77cbe48b0c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 472805,
            "upload_time": "2024-03-12T19:08:03",
            "upload_time_iso_8601": "2024-03-12T19:08:03.334779Z",
            "url": "https://files.pythonhosted.org/packages/e1/d3/1679b3c2000c3b7a84106c08b0504087cbb708202fdd37e14bb0b7b060e3/jupyterlab_conda_store-2024.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-12 19:08:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "conda-incubator",
    "github_project": "jupyterlab-conda-store",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "jupyterlab-conda-store"
}
        
Elapsed time: 0.20439s