From 4a51ff6ec0cac5263e332627ac93c30e895e3316 Mon Sep 17 00:00:00 2001 From: Stuart Chalk Date: Mon, 29 Jan 2024 13:20:44 -0500 Subject: [PATCH] - Changed numeric list to markdown format - Added pip install command for jcamp --- book/usecases/uvvis_metadata.ipynb | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/book/usecases/uvvis_metadata.ipynb b/book/usecases/uvvis_metadata.ipynb index 027eb3fe..4c2b2c99 100644 --- a/book/usecases/uvvis_metadata.ipynb +++ b/book/usecases/uvvis_metadata.ipynb @@ -227,14 +227,14 @@ "\n", "#### Running the notebook (on your computer)\n", "\n", - "1) Make sure Anaconda is installed on your computer\n", - "2) Use the Anaconda navigator (or the command line) to create a virutal environment\n", - "3) Enter the virtual environment\n", - "4) Install Jupyter Notebooks, Matplotlib and Numpy (all can be done through Anaconda)\n", - "5) Follow this link, for instructions to install jcamp https://pypi.org/project/jcamp/\n", - "6) Launch Jupyter, navigate to the file you stored this notebook in and launch this notebook\n", - "7) You can edit code chunks by clicking on them and typing \n", - "8) You can run code chunks by clicking on them and pressing play (in the banner above) or by pressing shift+enter" + "1. Make sure Anaconda is installed on your computer\n", + "2. Use the Anaconda navigator (or the command line) to create a virtual environment\n", + "3. Enter the virtual environment\n", + "4. Install Jupyter Notebooks, Matplotlib and Numpy (all can be done through Anaconda)\n", + "5. Follow this link, for instructions to install jcamp https://pypi.org/project/jcamp/\n", + "6. Launch Jupyter, navigate to the file you stored this notebook in and launch this notebook\n", + "7. You can edit code chunks by clicking on them and typing \n", + "8. You can run code chunks by clicking on them and pressing play (in the banner above) or by pressing shift+enter" ] }, { @@ -255,12 +255,18 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "id": "1f3e5d74", - "metadata": {}, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T18:10:51.575720Z", + "start_time": "2024-01-29T18:10:48.136208Z" + } + }, "outputs": [], "source": [ "# noinspection PyProtectedMember\n", + "!pip install jcamp # command to instruct Binder/Colab to install the jcamp package\n", "from jcamp import jcamp_read # Importing the jcamp_read() method from the jcamp package\n", "import matplotlib.pyplot as plt # Importing a plotting package\n", "import numpy as np # Import the numerical python package for mathematical operations"