Skip to content

Commit

Permalink
notebook-comments
Browse files Browse the repository at this point in the history
specified package import options
  • Loading branch information
stringtherapy committed Oct 30, 2024
1 parent fd2ddd0 commit ac4c380
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
5 changes: 3 additions & 2 deletions demos/1_Basics_Walkthrough.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@
"metadata": {},
"outputs": [],
"source": [
"#!pip install \"quantumaudio[demos]\""
"# For use of quantumaudio from PyPI\n",
"#!pip install \"quantumaudio[demos]\" "
]
},
{
Expand All @@ -101,7 +102,7 @@
"metadata": {},
"outputs": [],
"source": [
"# Set path for local use of the repository\n",
"# For use of quantumaudio from repository\n",
"import os\n",
"import sys\n",
"sys.path.insert(0, os.path.dirname(os.getcwd()))"
Expand Down
13 changes: 12 additions & 1 deletion demos/2_Multi-Channel_Processing_Example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,25 @@
"#### Import _quantumaudio_ and necessary _tools_"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "60f9c61e-2ff4-4b62-aa37-ec573ad1f2ba",
"metadata": {},
"outputs": [],
"source": [
"# For use of quantumaudio from PyPI\n",
"#!pip install \"quantumaudio[demos]\" "
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "302be8c7-e3a4-4241-9f0a-af01058165f0",
"metadata": {},
"outputs": [],
"source": [
"# Set path for local use of the repository\n",
"# For use of quantumaudio from repository\n",
"import os\n",
"import sys\n",
"sys.path.insert(0, os.path.dirname(os.getcwd()))"
Expand Down

0 comments on commit ac4c380

Please sign in to comment.