Skip to content

Instantly share code, notes, and snippets.

View THEGOLDENPRO's full-sized avatar
☁️
Taking pictures of clouds.

Goldy THEGOLDENPRO

☁️
Taking pictures of clouds.
View GitHub Profile
@i-am-unknown-81514525
i-am-unknown-81514525 / functions.ipynb
Last active October 23, 2023 20:56
Python tutorial on functions: Jupyter Notebook
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ForgottenUmbrella
ForgottenUmbrella / publish_python.md
Last active May 25, 2024 21:24
How to publish Python apps for human beings

How to publish Python apps for human beings

So, you've created a Python app (be it a graphical user interface with Qt or the like, or a simple command line interface). Great! But how are others going to use it? Python applications often have dependencies (e.g. from third-party modules), and they also need a Python interpreter to run them. For a developer, installing all the necessary bits and bobs to make things work is okay, but that's unacceptable for a normal user - they just want to download the thing and run it.

Below are simple instructions to publish your app on the three main operating systems: Windows, macOS and Linux.