Jupyter notebooks in the NVIDIA cuQuantum Appliance #33
-
I pulled the image from here and started a container. In the following directory: Multiple kernels are available to me in here as shown in the image below: Why is the container shipped with multiple versions of python? When I try run the code snippet from here), with the conda env shown in the image above, it asks me to install ipykernel which I do as shown below:
This I believe changes the path for
How do I circumvent this to make the appliance support Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
Note that the location of |
Beta Was this translation helpful? Give feedback.
-
Convert this to a discussion thread since it's not a bug. |
Beta Was this translation helpful? Give feedback.
-
conda is installing its own mpi library package and overriding the system's CUDA-enabled mpirun.
and set the environment variables in the conda environment before running qiskit:
|
Beta Was this translation helpful? Give feedback.
-
When creating a
Following the suggestion above would change the path of Instead, pick the |
Beta Was this translation helpful? Give feedback.
When creating a
.ipynb
file in theexamples
folder, thePython 3.8.10
kernel in the/bin/python3
directory raises the following error:Following the suggestion above would change the path of
mpirun
causing issues further down.Instead, pick the
base (Python 3.8.15)
kernel inopt/conda/bin/python
directory which haspip
installed and dopip3 install ipykernel
to be able to use notebooks in the container.