"Click Here" to return to the project README.md
Inside project root using your "Windows PowerShell" type:
npm install
npm run start
# In another "Windows PowerShell" inside project root type:
py -m venv .
Scripts\activate
python -m pip install -r .\requirements.txt
python -m python.eeg2bids
Note: Both the "python-service" & the "electron-app" need to be running simultaneously for EEG2BIDS Wizard to successfully function in development!
Recommended Intellij IDEA Ultimate Guide for development build
Inside project root using your "Windows PowerShell" type the following,
- python-service build:
# first follow the Development Build guide
# then paste the following commands:
python -m pip install pyinstaller
.\build.ps1
# Visit the /dist for the "python-service" build.
- electron-app build:
npm install
npm run build-windows
# Visit the /dist for the "electron-app" platform builds.
Note: It's important that the "python-service" is built before the "electron-app" because the python-service is bundled inside the electron-app.