Installation Guide#
You can install BIDS-Manager in two different ways: one-click installer (recommended) or manual installation (for advanced users).
Required dependencies?
Both installation methods include all the depencies required to run the GUI and helper scripts. All core requirements are version pinned in pyproject.toml
to ensure consistent installations.
One-click installers (recommended)#
1. Download the ZIP package:
2. Extract the ZIP file and run the script:
OS |
Script |
How to Run |
---|---|---|
Windows 10/11 |
|
Double-click |
Linux |
|
Allow execution and run the installer |
3. Allow script execution and run (for Linux users):
If you’re working in Linux, you’ll need first to allow the .sh
script execution. This can be done in two different ways:
Right click and select “Open terminal here” or open a terminal and use:
cd /path/to/your/installer
Give execute permissions to the installer
chmod +x install_bids_manager.sh
Run the installer
./install_bids_manager.sh
Allow “execute” option in XFCE systems
xfconf-query --channel thunar --property /misc-exec-shell-scripts-by-default --create --type bool --set true
Give execute permissions to the installer
chmod +x install_bids_manager.sh
Run the installer
./install_bids_manager.sh
Manual Installation (advanced)#
1. Create a virtual environment
We strongly recommend using BIDS-Manager within a virtual environment to avoid conflicts with system dependencies. The One-click installer automatically creates and manages a virtual environment, meanwhile the Manual Installation requires you to create one manually. If you want to learn more about virtual environments, click here.
# Navigate to your target directory and create a virtual environment
python3 -m venv <env_name>
# Activate the virtual environment
source <env_name>/bin/activate
# On Windows: <env_name>\Scripts\activate
2. Install BIDS Manager from GitHub
pip install bids-manager
Installation completed! 🎉#
After the installation finishes, you will find two shortcuts on your desktop:
OS |
Launch |
Uninstall |
---|---|---|
Windows |
|
|
Linux |
BIDS Manager (launcher) |
Uninstal BIDS Manager (configuration file) |