iswsl

Python utility to check whether the current script runs inside Windows' WSL


License
MIT
Install
pip install iswsl==1.0.1

Documentation

is_wsl

Python utility to check whether the current script runs inside Windows' WSL.

Install

pip install iswsl

Usage

Here's how to use it:

from iswsl import is_wsl

if is_wsl():
    print('Running inside WSL')
else:
    print('Running outside WSL')

Licence

MIT © Julien Harbulot

Inspired from the node version is-wsl by Sindre Sorhus