diff --git a/README.md b/README.md index 1bbd9cc..5149601 100644 --- a/README.md +++ b/README.md @@ -271,6 +271,10 @@ You can create a new conda environment with Python 3.12 and the `jupyter` and `v conda create -n vuegen_gui -c conda-forge -c bioconda python=3.12 jupyter vuegen ``` +The exact Python version used for the release is specified on the +[releases](https://github.com/Multiomics-Analytics-Group/vuegen/releases/latest) page +as we observed that sometimes the exact Python version is required to run the GUI. + > [!WARNING] > If you have errors with the `vuegen` package, you can install it separately using pip, as explained in the installation section. > diff --git a/gui/app.py b/gui/app.py index e2ce353..1caae9f 100644 --- a/gui/app.py +++ b/gui/app.py @@ -99,7 +99,7 @@ / "Basic_example_vuegen_demo_notebook" ).resolve() logo_path = ( - app_path.parent.parent / "docs" / "images" / "vuegen_logo.png" + app_path.parent.parent / "docs" / "images" / "logo" / "vuegen_logo.png" ) # 1000x852 pixels else: path_to_example_data = "docs/example_data/Basic_example_vuegen_demo_notebook"