{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Clone the repository\n", "!git clone https://github.com/FractalHabits/notebookbot.git\n", "# Change directory to the cloned repository\n", "import os\n", "os.chdir('notebookbot')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Install the requirements\n", "!pip install -r requirements.txt --quiet" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "pip install . --quiet" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from notebookbot.scripts import notebookbot_run\n", "\n", "notebookbot_run.main()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from src.scripts import notebookbot_run\n", "\n", "notebookbot_run.main() " ] } ], "metadata": { "language_info": { "name": "python" } }, "nbformat": 4, "nbformat_minor": 2 }