I have a Python project that requires a certain npm package that needs to be run from the command line. How to achieve this on the Community Cloud?
Here are the things that needs to be done:
- Install
npm - Install that package using npm command like
npm install package-name - Execute a command to run the install npm package, something like
package-name filename. Can this be done usingos.subprocesswithin a Python script?
I was wondering if there was a way to achieve all these 3 pointers?