Issues on deploying Node.js site with Python dependencies

Hi all, I’m try to deploy a NodeJS Express website which can execute Python script and use pandas, joblib dependencies.

It shows Errors while deploying like this.

I try many method like adjust the build command, and change the package.json data but it still not work.
I put all back-end file like server in backend folder
and other front-end file in other folder.
Github for this website:

Choosing python3 environment while deploying and use requirements.txt to get dependencies.

Here is my deploy settings:
Build Command: $ pip -r install requirements.txt
Start Command: $ node web_deploy_ver/backend/server.js

If you know how to adjust settings or file to deploy success, please let me know.

Thanks a lot.

Hey,

The pip command you’ve written here is almost correct but you’ve made a mistake on the order of the options. The command should be:

pip install -r requirements.txt

Jérémy.
Render Support, UTC+3