Here’s a step‑by‑step write‑up for installing mird237 (likely a package, tool, or driver – assuming it’s from a repository or a specific source like GitHub, PyPI, or a vendor).
If you have a more specific context (e.g., ROS, Python library, embedded device), replace the generic steps accordingly.
| Step | Action | Command / UI |
|------|--------|--------------|
| 1 | Verify OS version & enable Hyper‑V (optional) | systeminfo → Verify Version; dism /Online /Enable-Feature /All /FeatureName:Microsoft-Hyper-V |
| 2 | Install .NET Runtime | winget install Microsoft.DotNet.DesktopRuntime.6 |
| 3 | Install Docker Desktop | Download from https://desktop.docker.com/win/main/amd64/Docker%20Desktop%20Installer.exe and run installer. Restart when prompted. |
| 4 | Pull MIRD237 container image | Open PowerShell (admin): docker pull mirdcorp/mird237:latest |
| 5 | Create PostgreSQL instance (if not existing) | Use PostgreSQL Installer (EnterpriseDB) → Set password for postgres. |
| 6 | Initialise database schema | docker run --rm -e PGPASSWORD=YourPgPass -v %cd%/sql:/sql mirdcorp/mird237-dbinit |
| 7 | Run MIRD237 container | powershell docker run -d ^ --name mird237 ^ -p 443:443 ^ -e DB_HOST=localhost ^ -e DB_PORT=5432 ^ -e DB_USER=postgres ^ -e DB_PASSWORD=YourPgPass ^ -e LICENSE_KEY=XXXXX-XXXXX-XXXXX-XXXXX ^ mirdcorp/mird237:latest |
| 8 | Verify service is up | Open browser → https://<host‑ip> (accept self‑signed cert on first launch) → Login with admin / admin123. |
| 9 | Register license | Dashboard → Administration → License → Paste the key. |
| 10 | Configure data sources | Connectors → Add OPC‑UA, MQTT, etc. | mird237 install
mird237Date: [Insert Date]
Installer: [Name]
Environment: [OS, CPU, RAM, Storage]
MIRD237_HOME, MIRD237_CONFIG/etc/mird237/config.yamlsudo cp contrib/mird237.service /etc/systemd/system/
sudo systemctl enable mird237
sudo systemctl start mird237
The mird237 install process begins with obtaining the source. Be cautious: many third-party repositories host outdated or broken versions. Always use the official SNMMI (Society of Nuclear Medicine and Molecular Imaging) MIRD committee repository or a verified institutional mirror. Environment variables: MIRD237_HOME
Official download methods:
git clone https://github.com/mirdcommittee/pamphlet-237.gitAfter downloading, you will typically have a file named mird237_v1.2.zip (version number may vary). Verify the checksum if provided. Storage]
3. Post-Installation Configuration
# Example on Linux/macOS
sha256sum mird237_v1.2.zip
cd /opt/mird237/examples
mird237_test_install
Expected output:
MIRD237 installation verification...
Found required toolboxes: OK
MEX files loaded: OK
Test phantom loaded: OK
Dose calculation completed in 4.32 seconds.
All tests passed.
This document outlines the installation process for mird237 – assumed to be a software package/driver for a robot, sensor, or similar device (model/number). Adjust as needed for your actual target.