Looking to start learning Python?

Begin Here

Category: Packaging

A Python article about Packaging. It may be related to bdist, PyPI, easy_install, pip, distribute or something similar.

PyInstaller - How to Turn Your Python Code into an Exe on Windows

May 27, 2021 by Mike
You have just created an awesome new application. Maybe it's a game or maybe it's an image viewer. Whatever your application is, you want to share it with your friend or a family member. However, you know they won't know how to install Python or any of the dependencies. What do you do? You need […]

Python 101: Episode #9 - Imports

July 8, 2015 by Mike
Check out my latest episode of Python 101. This one is talks about how imports work in Python. You will learn about the following aspects of importing: import from module import submodule from module import * Enjoy!

Python: Packaging with Wheel

January 10, 2014 by Mike
Python's first mainstream package was the .egg file. Now there's a new format in town called the Wheel (*.whl). A wheel "is designed to contain all the files for a PEP 376 compatible install in a way that is very close to the on-disk format". In this article, we will learn how to create a […]

wxPython: Updating Your Application with Esky

July 12, 2013 by Mike
Today we're going to learn about one of wxPython's newer features: wx.lib.softwareupdate. It was actually added a couple of years ago. What this allows you to do is add update abilities to your software. As far as I can tell, this mixin only allows prompted updates, not silent updates. Getting Started It's built into wxPython […]

Python 101: pip - a replacement for easy_install

July 16, 2012 by Mike
Pip Installs Python or pip is a tool for installing and managing Python packages, many of which are on the Python Package Index (PyPI). It is a replacement of easy_install. In this article, we'll spend a little time trying out pip to see how it works and how it might help us in our Python […]

Python 101: easy_install or how to create eggs

July 12, 2012 by Mike
Today we're going to take a look at the controversial easy_install method of installing Python modules and packages. We will also learn how to create our own *.egg files. You will need to go get the SetupTools package to follow along. This package doesn't support Python 3.x so if you need that, see pip or […]
View More

End of content

No more pages to load

Copyright © 2024 Mouse Vs Python | Powered by Pythonlibrary