Skip to content
17 changes: 16 additions & 1 deletion docs/guides/serverless-first-program.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"description: How to create a parallel transpilation program and deploy it to IBM Quantum Platform to use as a reusable remote service.\n",
"---\n",
"\n",
"{/* cspell:ignore mypath */}\n",
"\n",
"# Write your first Qiskit Serverless program"
]
Expand Down Expand Up @@ -111,7 +112,21 @@
"```\n",
"</Admonition>\n",
"\n",
"First, run the following code cell to create a program file, `./source_files/transpile_remote.py`, which you will upload to Qiskit Serverless."
"First, run the following code cells to create a program file, `./source_files/transpile_remote.py`, which you will upload to Qiskit Serverless."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "c66025ea-e6d3-4c0e-a326-3da0fbb5e145",
"metadata": {},
"outputs": [],
"source": [
"import os\n",
"\n",
"mypath = \"./source_files\"\n",
"if not os.path.isdir(mypath):\n",
" os.makedirs(mypath)"
]
},
{
Expand Down
Loading