Top "Packaging" questions

Packaging is a configuration management process involved with capturing the knowledge needed to install or uninstall software on a target system.

Install specific version of Ansible (2.3.1.0) on Ubuntu 18.04 LTS

I want to install Ansible 2.3.1.0 on Ubuntu 18.04. When I run apt-get install ansible, it installs the version 2.5.3. Below is output …

ubuntu packaging debian-based
How should I structure a Python package that contains Cython code

I'd like to make a Python package containing some Cython code. I've got the the Cython code working nicely. However, …

python packaging cython
Problem with Icon.png (Icon specified in the Info.plist not found under the top level app wrapper: Icon.png (-19007))

I'm putting together a universal app and I have the icons in my project, but I keep getting a warning …

ios4 icons packaging
rpmbuild Installed (but unpackaged) files source

I'm trying to build an RPM from binaries on a REDHAT 6 system. I have all the files included in the %…

linux packaging redhat rpm rpmbuild
Logger for Java library

I'm writing a library that gathers various functions that I'll be using in different applications. I want it to generate …

java logging packaging
list python package dependencies without loading them?

Say that python package A requires B, C and D; is there a way to list A → B C D …

python dependencies packaging
Pyinstaller: generate -exe file + folder (in --onefile mode)

Now i'm working with Pyinstaller. I have an script which get images from a img folder.. /python |----/img |----|…

python user-interface exe pyinstaller packaging
What is the advantage of setting zip_safe to True when packaging a Python project?

The setuptools documentation only states: For maximum performance, Python packages are best installed as zip files. Not all packages, however, …

python packaging setuptools
PIP install "error: package directory 'X' does not exist"

I am trying to install this package via PIP. It gives me the following error: error: package directory 'RTbatch' does …

python pip packaging easy-install
How can I include package_data without a MANIFEST.in file?

How can I include package_data for sdist without a MANIFEST.in file? My setup.py looks like this: import …

python manifest packaging setuptools setup.py