@@ -44,42 +44,18 @@ All developments were done on [OLCF Andes](https://docs.olcf.ornl.gov/systems/an
```
</details>
* Since the QLSA circuit generator ([HHL](https://github.com/anedumla/quantum_linear_solvers)) uses an older qiskit version requiring qiskit-terra, we need to make two envs: (1) to generate the circuit and (2) to run the circuit using qiskit 1.0
1. Install libraries to generate circuit
* Make custom conda env
```
conda create --name env_custom python=3.9
conda activate env_custom
```
* Install qiskit
```
pip install -r requirements.txt --no-cache-dir
```
* **NOTE:** Make sure to test the installation with the sample codes provided:
1. Test qiskit installation: [`test_qiskit_installation.py`](test_qiskit_installation.py)
```
python test_qiskit_installation.py -backtyp ideal
conda create --name qlsa-circuit python=3.11
conda activate qlsa-circuit
```
<details><summary>Sample output from the test code:</summary>
* Install qiskit and [linear solver](https://github.com/anedumla/quantum_linear_solvers) package
```
Backend: QasmSimulator('qasm_simulator')
Job status is JobStatus.DONE
Total count for 00 and 11 are: {'00': 494, '11': 506}