Skip to content

Commit f434add

Browse files
authored
Fix App: Exact Python version and local exec (#153)
* 🐛 fix logo path for local execution * 📝🐛 Add hint to Python version GUI works with 3.12.10 for me but a dlib is missing if 3.12.11 is used.
1 parent a610101 commit f434add

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,10 @@ You can create a new conda environment with Python 3.12 and the `jupyter` and `v
271271
conda create -n vuegen_gui -c conda-forge -c bioconda python=3.12 jupyter vuegen
272272
```
273273

274+
The exact Python version used for the release is specified on the
275+
[releases](https://github.com/Multiomics-Analytics-Group/vuegen/releases/latest) page
276+
as we observed that sometimes the exact Python version is required to run the GUI.
277+
274278
> [!WARNING]
275279
> If you have errors with the `vuegen` package, you can install it separately using pip, as explained in the installation section.
276280
>

gui/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
/ "Basic_example_vuegen_demo_notebook"
100100
).resolve()
101101
logo_path = (
102-
app_path.parent.parent / "docs" / "images" / "vuegen_logo.png"
102+
app_path.parent.parent / "docs" / "images" / "logo" / "vuegen_logo.png"
103103
) # 1000x852 pixels
104104
else:
105105
path_to_example_data = "docs/example_data/Basic_example_vuegen_demo_notebook"

0 commit comments

Comments
 (0)