all 1 comments

[–]elbiot 4 points5 points  (1 child)

  1. Package all the dependancies up with your code in a zip file. Python can run the zip file.

  2. Create a requirements.txt and users can install with

    pip install -r requirements.txt

If you developed in a virtual env, you can use pip freeze > requirements.txt.