Command Line#
The moldenViz CLI offers a fast way to inspect Molden files and explore bundled examples. Run moldenViz -h for a full option list; the tables and recipes below summarise each capability.
Primary Options#
Flag / Argument |
Description |
Default |
|---|---|---|
|
Positional argument; path to a Molden file to visualise. |
|
|
Load a bundled example molecule ( |
None |
|
Skip orbital surfaces and render only the nuclear framework. |
|
|
Print the installed |
— |
|
Increase logging to show informative progress messages while loading and rendering data. |
|
|
Emit detailed debug logs for troubleshooting parsing or rendering issues. |
|
|
Suppress non-error log messages for minimal console output. |
|
|
Display inline help and exit. |
— |
Basic Rendering#
Render molecular orbitals from a Molden file:
moldenViz path/to/file.molden
Show only the molecular structure (skip orbital surfaces):
moldenViz path/to/file.molden -m
Bundled Examples#
Use one of the shipped example molecules when you just want to explore the plotting experience:
moldenViz -e co
Tips#
Combine
-ewith-mto explore only the geometry of an example.Use configuration overrides (see details) to change colors, bond lengths, or orbital contours before launching the CLI.
Check your installed version quickly without rendering a window:
moldenViz --versionTurn on additional logging when diagnosing issues (
FILEcan be any Molden path):moldenViz -v FILE
Silence informational output if you only care about errors during batch runs:
moldenViz -q FILE
Common recipes#
Use the following patterns as building blocks:
# Only plot the molecule inside my.molden
moldenViz my.molden -m
# Plot only the molecule of one of the examples
moldenViz -e co -m
# Inspect the installed version
moldenViz --version
# Launch with verbose logging to follow parsing progress
moldenViz -v my.molden
For additional Python-based export options, see Exporting Volumetric Data (v1.1+) in the Python API guide.