Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 811 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 811 Bytes

detect-python-interpreter

Detect the executable python interpreter cmd in $PATH.

Installation

$ npm install --save detect-python-interpreter

Usage

const { detect } = require('detect-python-interpreter');

const executable = detect();  // 'python', 'python2', 'python3' or throw an Error.

Contribution

PRs and Issues are welcomed.