Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion articles/how-to-python-qdk-local.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ Once imported, the `qsharp` package allows Q# namespaces to appear as Python mod
```output
Hello, quantum world!
```


> [!NOTE]
> If you hit an error `Unable to load shared library 'Microsoft.Quantum.Simulator.Runtime' or one of its dependencies`, then you may be missing the `libomp` library, as the OpenMP support library is required by the quantum simulator of the QDK. You can install `libomp` by running `sudo apt install libomp5-11` on Ubuntu, `brew install libomp` on macOS. For other distributions/OSs, please refer to your particular package manager.

> [!NOTE]
> If you are running your operations in Jupyter Notebooks, the `%%qsharp` magic command allows you to define new Q# operations within the same Jupyter notebook as the Python code, eluding the use of a host program. For more information, see [Q# and Jupyter Notebooks](/azure/quantum/user-guide/host-programs?tabs=tabid-python#q-jupyter-notebooks).

Expand Down
2 changes: 1 addition & 1 deletion articles/install-command-line-qdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Jupyter Notebooks allows running code in-place alongside instructions, notes, an
While you can build Q# applications in any IDE, we recommend using Visual Studio Code (VS Code) or Visual Studio IDE for developing your Q# applications if you are running them via a .NET console. Developing in these environments leverages the rich functionality of the Quantum Development Kit (QDK) extension, which includes warnings, syntax highlighting, project templates, and more.

> [!IMPORTANT]
> If you are working on Linux, you may encounter a missing dependency depending on your particular distribution and installation method (such as certain Docker images). Please make sure that the `libgomp` library is installed on your system, as the GNU OpenMP support library is required by the quantum simulator of the QDK. On Ubuntu, you can do so by running `sudo apt install libgomp1`, or `yum install libgomp` on CentOS. For other distributions, please refer to your particular package manager.
> If you encounter a missing dependency then please make sure that the `libomp` library is installed on your system, as the OpenMP support library is required by the quantum simulator of the QDK. You can install `libomp` by running `sudo apt install libomp5-11` on Ubuntu, `brew install libomp` on macOS. For other distributions/OSs, please refer to your particular package manager.


### Prerequisite
Expand Down