py2deb
py2deb copied to clipboard
Python to Debian package converter
I get such error if I run: ```sh ~/.local/bin/py2deb -r /tmp -- buildbot-www ``` ``` 2020-04-24 12:37:49 lts-debug pip.utils[24552] INFO Complete output from command python setup.py egg_info: 2020-04-24 12:37:49 lts-debug...
Hello @xolox , I am embarking myself in updating the underlying pip engine in pip-accel and py2deb. So far, I have whipped up this patch : ```patch diff --git a/pip_accel/__init__.py...
Hi! Thanks so much for this tool, it is really helpful. I've been able to generate a `.deb` file for my python package and `.deb` files for all of its...
When trying to build [coloredlogs](https://pypi.org/project/coloredlogs/), I encountered the error > Expected to find a single 'dist-packages' directory inside converted package! when building with --install-prefix=/usr/local. The second dist-package py2deb encounters contains...
Hello I'm running `py2deb -- .` and getting an error. py2deb 2.1 Python 3.7.3 I'm not sure which directory it's referring to but my project directory has permissions 755. ```...
The versioning scheme defined in PEP 440 (https://www.python.org/dev/peps/pep-0440/) includes pre-release versions. For example, version `1.0a2` is the second alpha version of the `1.0` release. Thus, version `1.0a2` comes before version...
So for a long time my python project had a setup.py with specific version of python packages. ``` install_requires=[ 'flask==0.10.1', # or whatever ... ``` Everything has worked fine for...
I'm attempting to use `py2deb` for a python 3 project and I run into the following error: ```bash root@547626b5656f:/test# py2deb -r /tmp -- -r requirements.txt 2018-06-26 13:00:01 547626b5656f pip_accel[7224] INFO...
With the [increasing adoption](https://pythonwheels.com/) of the wheel distribution archive format in the Python community in the past few years, I've noticed package authors starting to publish new releases to PyPI...
I got an error while trying to build a debian package for `pytorch`, which is due to problem in detecting the shared libraries installed with the package (in the `lib`...