Skip to content

Commit

Permalink
- Changed numeric list to markdown format
Browse files Browse the repository at this point in the history
- Added pip install command for jcamp
  • Loading branch information
stuchalk committed Jan 29, 2024
1 parent 5f074c2 commit 4a51ff6
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions book/usecases/uvvis_metadata.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
},
{
Expand All @@ -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"
Expand Down

0 comments on commit 4a51ff6

Please sign in to comment.