Search code examples
pythonpycurl

Use pycurl without installation


I am working on a tkinter app and I would like to use the pycurl module in my project but without being installed on any host machine... Like a portable version into my package. I didn't see any topic on the web speaking about it but still keeping hope to have a sort of workaround for it.

Thanks in advance.


Solution

  • You could create a binary file of your project using pyinstaller. It will bundle all the dependencies that are required by your application, users can just run the binary file without worrying about installing or setting up dependencies.