Skip to content Skip to sidebar Skip to footer

How To Install Python3 In Google Cloud Platform For A Node App

I'm using google cloud platform for my nodejs app. Problem, after deploying the app i have access to python2.7 but not to the version 3. This one seems to be missing in the usr/bi

Solution 1:

If you need a runtime that has both a specific version of Node.js and Python, you'd probably be better off using Cloud Run and specifying a custom image instead of trying to use one language inside another's runtime.

Flex would also possibly work here, but Cloud Run will likely be significantly cheaper, have faster startup times, and can scale to zero.

Post a Comment for "How To Install Python3 In Google Cloud Platform For A Node App"