This guide will walk Windows users through installing and running the XMIDAS (X-ray Multimodal Image Data Analysis Software) application from source.
- Miniconda or Anaconda (64-bit)
- (Optional) Git for Windows
Option A – With Git (recommended):
git clone https://github.com/pattammattel/xmidas.git
cd xmidasOption B – Without Git:
-
Click Code → Download ZIP
-
Extract ZIP
-
Open Anaconda Prompt and navigate into the extracted
xmidas/folder:cd path\to\extracted\xmidas
🚨 IMPORTANT: You must be inside the xmidas folder before continuing! All commands in the next steps assume this location.
conda create -n xmidas-env python=3.12
conda activate xmidas-envpip install -r requirements.txtpython -m xmidas.main- ✅ Double-check that you're in the
xmidas/folder before running anything. - If you see
ModuleNotFoundError: No module named 'xmidas', you are probably in the wrong directory. - If PyQt-related errors occur, ensure
PyQt6is installed and compatible with Python 3.12.
Inside MiscFiles-FindProperLocation/, you’ll find a helper script:
python create_shortcut.pyThis will generate a Windows .bat shortcut to launch the GUI.
- 📖 Documentation: See
docs/source/index.rst - 🐞 Issues / Bugs: GitHub Issues
Happy analyzing!
– XMIDAS Development Team