{ "cells": [ { "cell_type": "markdown", "id": "1105f84c", "metadata": {}, "source": [ "First, uninstall any existing version" ] }, { "cell_type": "code", "execution_count": null, "id": "d3df6ace", "metadata": {}, "outputs": [], "source": [ "%pip uninstall notebook_nanoservice -y" ] }, { "cell_type": "markdown", "id": "cdd3b595", "metadata": {}, "source": [ "Next, install local development version" ] }, { "cell_type": "code", "execution_count": null, "id": "4b0a65ab", "metadata": {}, "outputs": [], "source": [ "%pip install -e .." ] }, { "cell_type": "markdown", "id": "938cfc57", "metadata": {}, "source": [ "Verify local installation" ] }, { "cell_type": "code", "execution_count": null, "id": "9793d605", "metadata": {}, "outputs": [], "source": [ "%pip show notebook_nanoservice" ] }, { "cell_type": "markdown", "id": "690d334d", "metadata": {}, "source": [ "# IMPORTANT\n", "Restart the kernel before running the next cell." ] }, { "cell_type": "code", "execution_count": null, "id": "b15e315b", "metadata": {}, "outputs": [], "source": [ "from notebook_nanoservice import NanoService" ] }, { "cell_type": "markdown", "id": "7fae2789", "metadata": {}, "source": [ "If there are no errors, then package was installed successfully. Now go to [sample.ipynb](sample.ipynb) to test." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.9" } }, "nbformat": 4, "nbformat_minor": 5 }