Skip to content

Commit eec1dae

Browse files
authored
Update qiskit-ibm-runtime install from source instructions (#3726)
`pip install -r requirements-dev.txt` does not work for qiskit-ibm-runtime because we removed the requirements text files in Qiskit/qiskit-ibm-runtime#2053
1 parent 84e32d5 commit eec1dae

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/guides/install-qiskit-source.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,7 @@ git clone https://github.com/Qiskit/qiskit-ibm-runtime.git
121121
cd qiskit-ibm-runtime
122122
```
123123

124-
3. (Optional) If you want to run tests or linting checks, install the developer requirements. We recommend using a [virtual environment](https://docs.python.org/3/library/venv.html) to avoid polluting your global Python installation.
125-
126-
```bash
127-
pip install -r requirements-dev.txt
128-
```
129-
130-
4. Install `qiskit-runtime`. We recommend using a [virtual environment](https://docs.python.org/3/library/venv.html) to avoid polluting your global Python installation.
124+
3. Install `qiskit-runtime`. We recommend using a [virtual environment](https://docs.python.org/3/library/venv.html) to avoid polluting your global Python installation.
131125

132126
* **Standard install**:
133127

@@ -143,6 +137,12 @@ pip install -r requirements-dev.txt
143137

144138
In editable mode, the compiled extensions are built in _debug mode_ without optimizations.
145139

140+
4. (Optional) If you want to run tests or linting checks, install the developer requirements. We recommend using a [virtual environment](https://docs.python.org/3/library/venv.html) to avoid polluting your global Python installation.
141+
142+
```bash
143+
pip install -e ".[dev]"
144+
```
145+
146146

147147
## Next steps
148148

0 commit comments

Comments
 (0)