Is it possible to install python packages in Node JS using python-shell package?
问题 I just came to know that we can run Python scripts in Node JS using the below npm package. python-shell Is it possible to install python packages using the same library? Something like pip install package I need to import a few libraries to work with the Python scripts. If it is not possible with this package, is there any other way to achieve it? 回答1: Here's the first file : test.js let {PythonShell} = require('python-shell'); var package_name = 'pytube' let options = { args : [package_name]