"Click Here" to return to the project README.md
Inside project root using your terminal type:
npm install
npm run start
# In another terminal inside project root type:
python -m venv .
source bin/activate
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!
Inside project root using your terminal type the following,
python-service build:
# first follow the Development Build guide
# then paste the following commands:
pip install pyinstaller
chmod +x build.sh
./build.sh
# Visit the /dist for the "python-service" build.
electron-app build:
npm install
npm run build-mac
# 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.