"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:
sudo apt-get install python3-venv
npm run start-server
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
sudo apt-get install python3-dev
sudo apt-get install binutils
chmod +x build.sh
./build.sh
# Visit the /dist for the "python-service" build.
electron-app build:
npm install
npm run build-linux
# 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.