I need to deploy a web application on Render.com that requires libraries available only through conda-forge. Since these libraries cannot be installed using pip, I need a solution to integrate both pip and conda package installations in my deployment process. Up to now, I was using requirements.txt but it only works with pip.
Hi,
Conda isn’t available by default on Render’s Python Native Runtime.
You may be able to install it as part of a build script, as long as it doesn’t require special privileges, such as sudo
.
Or, you could use Docker to setup your own environment with OS-level configuration your project needs.