From 40816ff6852f12e22bc4ca47c2b6aef64a7d188a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=C2=A0St=C4=99ch=C5=82y?= Date: Fri, 20 Mar 2026 22:51:30 +0100 Subject: [PATCH 1/4] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index c25e3ca..6be68cd 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,14 @@ cd qref pip install . ``` +### Graphviz +For visualization we use `graphviz`, which requires the [Graphviz](https://graphviz.org/) system package to be installed on your machine — the Python `graphviz` library alone is not sufficient. + +> - **macOS:** `brew install graphviz` +> - **Linux (Debian/Ubuntu):** `sudo apt-get install graphviz` +> - **Windows:** Download the installer from [graphviz.org/download](https://graphviz.org/download/) and add it to your `PATH`. + + ## QREF format QREF format represents quantum programs as a hierarchical directed acyclic graphs (DAGs). From 4273d3241150619f1628a6220059e09036b5e0f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=C2=A0St=C4=99ch=C5=82y?= Date: Sat, 21 Mar 2026 10:24:43 +0100 Subject: [PATCH 2/4] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Konrad Jałowiecki --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6be68cd..81999eb 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ pip install . ``` ### Graphviz -For visualization we use `graphviz`, which requires the [Graphviz](https://graphviz.org/) system package to be installed on your machine — the Python `graphviz` library alone is not sufficient. +For visualization we use `graphviz` Python package, which requires the [Graphviz](https://graphviz.org/) executable to be available in your PATH — the Python package is not sufficient. > - **macOS:** `brew install graphviz` > - **Linux (Debian/Ubuntu):** `sudo apt-get install graphviz` From 1dc213691bfa2d5eea8eca97a669a7529f02c308 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=C2=A0St=C4=99ch=C5=82y?= Date: Sat, 21 Mar 2026 10:24:53 +0100 Subject: [PATCH 3/4] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Konrad Jałowiecki --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 81999eb..b55f3d8 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,8 @@ pip install . For visualization we use `graphviz` Python package, which requires the [Graphviz](https://graphviz.org/) executable to be available in your PATH — the Python package is not sufficient. > - **macOS:** `brew install graphviz` -> - **Linux (Debian/Ubuntu):** `sudo apt-get install graphviz` +> - **Linux (Debian/Ubuntu):** `sudo apt install graphviz` +> - **Linux (Fedora):** `sudo dnf install graphviz` > - **Windows:** Download the installer from [graphviz.org/download](https://graphviz.org/download/) and add it to your `PATH`. From 0f6242a0e5cdc5a30f68ff1f322dc531cbb59ddb Mon Sep 17 00:00:00 2001 From: mstechly Date: Sat, 21 Mar 2026 10:34:41 +0100 Subject: [PATCH 4/4] docs: update graphviz instructions --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index b55f3d8..540df79 100644 --- a/README.md +++ b/README.md @@ -26,12 +26,7 @@ pip install . ``` ### Graphviz -For visualization we use `graphviz` Python package, which requires the [Graphviz](https://graphviz.org/) executable to be available in your PATH — the Python package is not sufficient. - -> - **macOS:** `brew install graphviz` -> - **Linux (Debian/Ubuntu):** `sudo apt install graphviz` -> - **Linux (Fedora):** `sudo dnf install graphviz` -> - **Windows:** Download the installer from [graphviz.org/download](https://graphviz.org/download/) and add it to your `PATH`. +For visualization we use `graphviz` Python package, which requires the [Graphviz](https://graphviz.org/) executable to be available in your PATH — the Python package is not sufficient. Please [follow the instructions here](https://graphviz.org/download/) based on the operating system you're using. ## QREF format