DSACMS / dedupliFHIR

Prototype for basic deduplication and aggregation of eCQM data
Creative Commons Zero v1.0 Universal
8 stars 2 forks source link

Anaconda Python Crashes Electron App #67

Open Firebird1029 opened 4 months ago

Firebird1029 commented 4 months ago

Describe the bug If Anaconda Python is installed, the Electron app crashes and complains that it cannot find the path to the Python executable.

To Reproduce Steps to reproduce the behavior:

Expected behavior The Electron app should proceed to the next screen after proceeding by hitting Submit.

Actual behavior The Electron app crashes.

Screenshots

image

Device Info:

Additional context Add any other context about the problem here.

EndlessMe commented 2 months ago

You can fix the issue by creating a virtual environment in the root of the code repo via Terminal.app

python3 -m venv .venv
source .venv/bin/activate

After this, you can install the dependencies

pip3 install poetry
make install

Try running the electron app again and you shouldn't have any issues.