{ "cells": [ { "cell_type": "markdown", "metadata": { "tags": [] }, "source": [ "# Checking your setup\n", "Run through this notebook to make sure your environment is properly setup. Be sure to launch Jupyter from inside the virtual environment." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[42m[ OK ]\u001b[0m Python\n", "\u001b[42m[ OK ]\u001b[0m bokeh\n", "\u001b[42m[ OK ]\u001b[0m ffmpeg\n", "\u001b[42m[ OK ]\u001b[0m geopandas\n", "\u001b[42m[ OK ]\u001b[0m jupyterlab\n", "\u001b[42m[ OK ]\u001b[0m matplotlib\n", "\u001b[42m[ OK ]\u001b[0m numpy\n", "\u001b[42m[ OK ]\u001b[0m pandas\n", "\u001b[42m[ OK ]\u001b[0m seaborn\n", "\u001b[42m[ OK ]\u001b[0m shapely\n", "\u001b[42m[ OK ]\u001b[0m geoviews\n", "\u001b[42m[ OK ]\u001b[0m holoviews\n", "\u001b[42m[ OK ]\u001b[0m hvplot\n", "\u001b[42m[ OK ]\u001b[0m panel\n" ] } ], "source": [ "from check_env import run_env_check\n", "run_env_check()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "*Note: Adapted from Andreas Mueller's [`check_env.ipynb` notebook](https://github.com/amueller/ml-workshop-1-of-4/blob/master/check_env.ipynb).*" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "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.10.10" } }, "nbformat": 4, "nbformat_minor": 4 }