pip3

You can use this to install pip3 and run pip3 commands.

Usage no npm install needed!

<script type="module">
  import pip3 from 'https://cdn.skypack.dev/pip3';
</script>

README

You can use this to install pip3 and run pip3 commands.

Example:

const pip3 = require('pip3');

pip3.install().then(success => {
    if (success) {
        console.log('pip3 has been succesfully installed!')
        pip3.exec('--version');
    } else {
        console.log('Installation of pip3 failed.')
    }
});