A minimal command-line interface for running Python scripts or executing inductiva CLI commands — without needing to install Python or any packages manually.
This tool is distributed as a single-file executable to help users quickly try out Inductiva or run simple workflows.
Inductiva Barebones Shell is a REPL-style terminal application that supports two types of commands:
python <script.py> [args]– Runs a local Python script with argumentsinductiva <cli-command>– RunsinductivaCLI commands (e.g.,inductiva auth login,inductiva list simulations, etc.)
✅ All bundled into a single .exe — no Python installation required!
Just download and run the executable:
./inductiva-runner.exeOnce launched, you'll see a prompt:
Inductiva Barebones Shell. Type 'exit' or Ctrl+C to quit.
>
First run the login cli command:
> indutiva auth login
You can now:
> python my_script.py arg1 arg2Make sure the script is in the same folder or provide the full path.
> inductiva user infoThis runs actual inductiva CLI commands — no installation needed.
- You want to quickly try the Inductiva CLI without setting up Python
- You’re testing a simple workflow or script that depends on
inductiva - You’re introducing Inductiva to someone new (e.g., in a workshop or tutorial)
For production use, development, or scripting, we highly recommend installing inductiva via pip:
pip install inductivaThis gives you the full Python environment and integration features.
Pull requests and issues are welcome!