I'm developing a program that need to run Python and JS script, but I dont want require user to install Python or Deno by themsevles. Is there anyway to integrate Pyhton interpreter or Deno in an installer, and put it in a directory on user machine when install the Rust program ?
The modern solution to this problem is containerization. Put your (pinned) scripting language runtimes into a Docker container along with the source code, problem solved.
1 Like
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.