Hi @sebsheep, when it comes to Python you don’t need to use npm to run your scripts. The contents of the start and install scripts are just bash commands, so whatever you would typically use at a Linux command prompt should work fine by itself. I think you can probably just get rid of the npm run on this command and it should run, or at least return a more helpful error message, although i haven’t tried that with this specific command.
Thank you for the answer. The thing is that I thought I was NEEDED npm (since Elm is a npm package). But there is also a “npm-free” binary available which solves my issue.
If you wanted to use Node / NPM on the “front end” and Python on the backend you could do that - it would just be a little convoluted because you’d have to have install and start scripts in your package.json file that took care of the pip install and starting up the backend as well as managing the frontend packages using Glitch’s built-in tools. But if you’re happy with what you’ve got then that’s awesome!