Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 900 Bytes

hello-world.md

File metadata and controls

41 lines (31 loc) · 900 Bytes

[ Back to index ]

Tutorial: run Python Hello World app on Linux, Windows and MacOS

python3 -m pip install cmind

You may need to restart bash to add cm and cmr binaries to your PATH,

cm pull repo mlcommons@ck
cm run script --tags=print,python,hello-world
cmr "print python hello-world"

This CM script is a simple wrapper to native scripts and tools with a common CLI and API described by a simple declarative YAML configuration file that specifies wrapper inputs, environment variables and dependencies on other portable CM scripts:

alias: print-hello-world-py
uid: d83274c7eb754d90

automation_alias: script
automation_uid: 5b4e0237da074764

deps:
- tags: detect,os
- tags: get,sys-utils-cm
- names:
  - python
  tags: get,python3

tags:
- print
- hello-world
- python