Home > Blockchain >  How do I take my code i wrote in vs and make it an app so people can download it?
How do I take my code i wrote in vs and make it an app so people can download it?

Time:10-11

How do I take my code I wrote in vs and make it an app so people can download it?? I tried looking stuff up maby i am looking in the wrong areas. i am self taught programmer/beginner!

CodePudding user response:

you can try Pyinstaller to package your program, but use google first

CodePudding user response:

There are many ways for you to Package your code.

If you just want people to be able to use your code like friends and family they can run it from command line if they install Python.

If you want to run just the code from the cloud here is a list of script hosts from geek flare.

  • A2 Hosting. Kamatera Express. Chemicloud. Cloudzy. PythonAnywhere. Platform.sh. FastComet. Heroku.

Now if you want there to be a ui you can learn something like kivy for a traditional app.

Even better you could turn it to a web app using a framework like Flask, FastAPI or Django. < List in order of time investment needed.

  • Related