Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot import qiskit_algorithms on Amazon Braket note book

I was going to use Braket in us-east1. I wanted to use qiskit, so I wanted to import the module, but an error occurred.

I referred to the following URL https://qiskit-community.github.io/qiskit-braket-provider/tutorials/3_tutorial_minimum_eigen_optimizer.html

Checking with !pip list, qiskit_algorithms is installed without any problem.

【code】

!pip install qiskit
!pip install qiskit-optimization
!pip install qiskit-algorithms

from qiskit import QuantumCircuit, transpile
from qiskit.quantum_info import SparsePauliOp
from qiskit.primitives import Sampler
from qiskit_aer import AerSimulator
from qiskit_optimization import QuadraticProgram
from qiskit_algorithms.minimum_eigensolvers import QAOA
from qiskit_algorithms.optimizers import COBYLA
from qiskit_algorithms import NumPyMinimumEigensolver
from qiskit_optimization.algorithms import MinimumEigenOptimizer

【output】

ModuleNotFoundError                       Traceback (most recent call last)
Cell In[7], line 10
      4 from qiskit_aer import AerSimulator
      5 # from qiskit_optimization import QuadraticProgram
      6 # from qiskit_algorithms.minimum_eigensolvers import QAOA
      7 # from qiskit_algorithms.optimizers import COBYLA
      8 # from qiskit_algorithms import NumPyMinimumEigensolver
      9 # from qiskit_optimization.algorithms import MinimumEigenOptimizer
---> 10 import qiskit_optimization

ModuleNotFoundError: No module named 'qiskit_optimization'

How can I install qiskit_algorithms and qiskit_optimization without problems?

I have tried the following.

  • Verify that the module is installed with a !pip list
  • Restart kernel
  • Start another notebook
  • Verify that the installed path of the package is correct
  • Confirm that the module works fine in the local environment
like image 801
yusuke Avatar asked Dec 22 '25 02:12

yusuke


1 Answers

In this case, can you run

%pip install --upgrade qiskit
%pip install --upgrade qiskit-optimization
%pip install --upgrade qiskit-algorithms

This will install the library in the environment where the kernel is running instead of the base environment. The command !pip will use the base environment.

These commands should be ran from a Jupyter notebook. If you want to run pip installs from a terminal in the Braket instance, you can go to the terminal and activate the Braket environment using:

cd /home/ec2-user/
source ~/anaconda3/etc/profile.d/conda.sh
conda activate Braket

From there, you can then run the pip commands:

pip install --upgrade qiskit
pip install --upgrade qiskit-optimization
pip install --upgrade qiskit-algorithms

In the case of Amazon Braket, qiskit is already installed as a direct dependency. However, it is also a dependency of the qiskit_braket_provider which is installed into the environment.

In the case of older versions of the qiskit-braket-provider, qiskit 1.x was not supported. However, new versions (as of this commit from around 2 weeks ago) of Braket Notebook Instances do have that support. If you do not wish for your full environment to get updated, you can run the lines:

# From a Jupyter notebook
%pip install --upgrade qiskit_braket_provider
%pip install --upgrade qiskit
%pip install --upgrade qiskit-optimization
%pip install --upgrade qiskit-algorithms

There is also an option to stop and then start the notebook again. This will pull in the latest Braket examples and environment but will result in loss of work. For your use case, attempting the pip upgrades should unblock your issue.

Edit: After some testing, there is also an issue of incompatibility with moving to qiskit 1.x on Braket notebooks. The reason for this is that qiskit==0.46.x is currently installed. This version of qiskit installs qiskit-terra, the old name for the qiskit package for compatibility. Therefore, when running the upgrades and installing qiskit 1.x, qiskit-terra is kept. To work around this, try running:

%pip uninstall qiskit-terra
%pip uninstall qiskit
%pip install --upgrade qiskit
%pip install --upgrade qiskit-optimization
%pip install --upgrade qiskit-algorithms
like image 69
AbeCoull Avatar answered Dec 25 '25 09:12

AbeCoull



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!