Tagged Questions
The distribute tag has no wiki summary.
29
votes
4answers
1k views
Differences between distribute, distutils and setuptools?
I'm trying to port an open-source library (SymPy, if anyone is wondering) to Python 3. To do this, I need to run 2to3 automatically when building for Python 3. To do that, I need to use distribute, ...
25
votes
5answers
4k views
What's the proper way to install pip, virtualenv, and distribute for Python?
Short Question
What is the proper way to install pip, virtualenv, and distribute?
Background
In my answer to SO question 4314376, I recommended using ez_setup so that you could then install pip ...
17
votes
5answers
1k views
State of Python Packaging: Buildout, Distribute, Distutils, EasyInstall, etc
The last time I had to worry about installing Python packages was two years ago working with Enthought, NumPy and MayaVi2. That experience gave me lingering nightmares related to quirky behavior ...
14
votes
3answers
580 views
How do I write a setup.py for a twistd/twisted plugin that works with setuptools, distribute, etc?
The Twisted Plugin System is the preferred way to write extensible twisted applications.
However, due to the way the plugin system is structured (plugins go into a twisted/plugins directory which ...
12
votes
7answers
996 views
Shipping Closed-Source Application for Linux
What are some methods I can use to ship a closed-source application for linux?
At the moment the application links against a few libraries (WxWidgets, GraphcisMagic, Crypto++, etc).
Statically ...
9
votes
3answers
152 views
automatically update python script
TL;DR I need a module which will automatically update my script in the background, silently.
I'm have a Python script which I distribute to users. I frequently update this, and then ask them to ...
8
votes
2answers
755 views
How do you correct Module already loaded UserWarnings in Python?
Getting the following kinds of warnings when running most python scripts in the command line:
/Library/Python/2.6/site-packages/virtualenvwrapper/hook_loader.py:16: UserWarning: Module
...
6
votes
1answer
76 views
How do distribute and pip relate to one another?
I've been teaching myself Python through the book "Learn Python The Hard Way" (2nd Edition). In exercise 46 it told me to read up on Pip, Distribute, and a few other packages.
The documentation for ...
6
votes
2answers
1k views
Why does the python-pip yum package provide pip-python instead of pip?
I installed python-pip package via yum (Fedora's updates repo). It does not add the pip script to my PATH though.
$ which pip
/usr/bin/which: no pip in ...
6
votes
1answer
1k views
“UserWarning: Unbuilt egg for setuptools” - What does this actually mean?
When I install things into a virtualenv using pip I often see the message "UserWarning: Unbuilt egg for setuptools". I always safely ignore it and go about my business and it doesn't seem to cause me ...
6
votes
8answers
288 views
Distribute a application to the public so they can compile, without revealing the source
I have a proprietary application I would like to hand out to a few people for testing, except we do not want to reveal the source to them. The application is written in C++ for Linux. It links against ...
4
votes
1answer
339 views
Does pip handle extras_requires from setuptools/distribute based sources?
I have package "A" with a setup.py and an extras_requires line like:
extras_require = {
'ssh': ['paramiko'],
},
And a package "B" that depends on util:
install_requires = ['A[ssh]']
If I ...
4
votes
1answer
216 views
What's the best layout for a python command line application?
What is the right way (or I'll settle for a good way) to lay out a command line python application of moderate complexity? I've created a python project skeleton using paster, which gave me a few ...
4
votes
2answers
473 views
Closed-Source applications for linux
I am working on a closed source application that should run on Windows, Mac OS X and major Linux distributions (maybe open-source at a later stage).
The program will link against some libraries: ...
4
votes
2answers
1k views
PIP: Installing only the dependencies
I have a script that creates a virtualenv, installs distribute and pip in it and then optionally clones a git repo.
Now I have the project I will be working on, installed. But its dependencies are ...
4
votes
2answers
239 views
How do I get started with zc.buildout and Distribute?
I want to use buildout for dependency management, and I hear distribute is the new good way to manage installation of your project.
However, easy tutorials to get started seem to be thin on the ...
4
votes
1answer
1k views
Packaging resources with setuptools/distribute
I'm developing an Python egg that has several .txt dependencies (they're templates used to generate files by the egg itself), and I'm struggling to get those dependencies copied to site-packages ...
3
votes
1answer
45 views
Multiple installation configurations for a Python package
I'm working on creating a Python package that is somewhat modular in nature and I was wondering what's the best way to go about handling multiple installation configurations?
Take the following ...
3
votes
2answers
122 views
How to include package data with setuptools/distribute?
When using setuptools/distribute, I can not get the installer to pull in any package_data files. Everything I've read says that the following is the correct way to do it. Can someone please advise?
...
3
votes
1answer
286 views
When to use pip requirements file versus install_requires in setup.py?
I'm using pip with virtualenv to package and install some Python libraries.
I'd imagine what I'm doing is a pretty common scenario. I'm the maintainer on several libraries for which I can specify ...
3
votes
1answer
73 views
What is the recommended way to generate and copy some files to arbitrary places in a setup.py?
I have a PyQT KDE application and I need to generate some files(with pyuic and pyrcc commands) and copy some files(.desktop) to some places(ie /usr/share/applications/kde4/). What are preferred ways ...
3
votes
1answer
76 views
Pip: Specifying minor version
In my requirements.txt file I want to specify that my app needs Django version 1.3.x. That is, either 1.3.0, or 1.3.1, or 1.3.2, etc. (When these come out.) But not 1.4, when it comes out.
What's the ...
3
votes
1answer
292 views
How do I use data in package_data from source code?
In setup.py, I have specified package_data like this:
packages=['hermes'],
package_dir={'hermes': 'hermes'},
package_data={'hermes': ['templates/*.tpl']},
And my directory structure is roughly
...
3
votes
3answers
182 views
Distributing python code with virtualenv?
I want to distribute some python code, with a few external dependencies, to machines with only core python installed (and users that unfamiliar with easy_install etc.).
I was wondering if perhaps ...
3
votes
1answer
669 views
Why does “python setup.py sdist” create unwanted “PROJECT-egg.info” in project root directory?
When I run
python setup.py sdist
it creates an sdist in my ./dist directory. This includes a "PROJECT-egg.info" file in the zip inside my "dist" folder, which I don't use, but it doesn't hurt me, ...
3
votes
6answers
339 views
Can I distribute my iPhone app for only certain people?
I want to develop a specific application that only clients of mine would be able to use, how can I limit the app to be downloaded only by people who I aprove ?
Thanks !
3
votes
3answers
131 views
Standard way of distributing source code?
I am relatively new to programming, and have built a few working C++ commandline programs with Xcode in Mac OS X (no dependencies on Mac-only libraries or APIs). My question is:
What is the standard ...
2
votes
0answers
35 views
python packages: how to depend on the latest version of a separate package
I'm developing coding a test django site, which I keep in a bitbucket repository in order to be able to deploy it easily on a remote server, and possible share development with a friend. I use hg for ...
2
votes
1answer
78 views
easy_install with pypy while Python is installed
I installed PyPy while still having Python 2.7 on my system.
How do I install and then use easy_install with PyPy?
What is the syntax for distinguishing where I want to install to with easy_install?
...
2
votes
0answers
79 views
installing a Python package source tarball with pip
I'm trying to figure out how to construct a Python source package that is installable via pip. I tried creating a test project with the setup.py file described on ...
2
votes
1answer
59 views
Running `chmod` after installing a package using `setup.py`
Let's assume I have a package which calls an executable file somewhere in the code (for example a third-party c/java-program). Let's further assume, the application is small/trivial enough to bundle ...
2
votes
0answers
82 views
.net dll version issue when replacing one dll
I have the following problem. I created software, containing several projects in one solution. When I fix a bug in one of my projects which doesn't change how functions behave, (For example a simple ...
2
votes
1answer
246 views
How can I correctly install multiple non-package Distribute/virtualenv/pip ecosystems on Ubuntu?
I am developing Python applications in Ubuntu. I want to setup a Distribute/virtualenv/pip ecosystem to manage my Python packages independently of any system Python packages (which I manage in ...
2
votes
2answers
164 views
How do I make VirtualEnv use a custom version of setuptools?
The large corporation that I work for uses a custom version of Setuptools. This private fork of setuptools is intended to deal with certain networking and security difficulties that are unique to our ...
2
votes
1answer
213 views
Pip with virtualenv not upgrading Django
I'm using pip with virtualenv --no-site-packages --distribute and am trying to upgrade Django. pip install -U Django should upgrade it according to the docs I found. However, it simply finds the ...
2
votes
2answers
1k views
Confusing Python install in user local (virtualenv, pip, distribute)
I tried to install python below way. But this did not work.
This take "error: bad install directory or PYTHONPATH".
What's the proper way to install pip, virtualenv, and distribute for Python?
...
2
votes
1answer
78 views
Is there a method to find out if a package is to be installed with distutils instead of setuptools?
I can look inside setup.py I suppose to see if it's a distutils package. But in the process of familiarizing myself with python package management I have noticed that there seems to be more than one ...
2
votes
1answer
441 views
Use distribute/setuptools to create symlink (or run script)?
As part of my project's setup process, I need to symlink one of the packages to a specified directory so an init.d script can find it. Is there any way to add this as a post-processing command to ...
2
votes
2answers
210 views
Including package data with Distribute
I'm trying to use Distribute for my project's setup.py. I want it to include all the files in the package folder, which are text and image files, but not .pyc files of course. I read that the files ...
2
votes
3answers
1k views
Introduction/tutorial to `pkg_resources`
I heard about Distribute's pkg_resources. I want it to organize resources such as images in my project. Is there a good tutorial on how to use it?
1
vote
2answers
109 views
What is the best way to share/distribute Excel macro?
I wrote the macro in Excel and want to distribute it to the users. Once opened I want the macro to add itself as a toolbar and then to be always visible whenever the Excel is opened. So the macro can ...
1
vote
2answers
82 views
blackberry, how test on device
I develop an app in BlackBerry JDE 4.5, I use ksoap library too.
When I try to test the app in simulators, I need to Load two files:
ksoap2.cdo
MyApp.cdo
But... If I want to distribute for test in ...
1
vote
1answer
121 views
How to pack a rails application into an exe file to distrubute it with tar2rubyscript?
I was following this How-To on Distributing Rails Applications
http://www.erikveen.dds.nl/distributingrubyapplications/rails.html
but by the time i do
$ ruby tar2rubyscript.rb desktopApp/
the ...
1
vote
2answers
176 views
Building standalone OCaml program
I'm getting crazy while trying to understand how to produce a binary in OCaml that doesn't need anything too specific (eg. having anything as OCaml build tools installed).
I'm using OMake and ...
1
vote
2answers
221 views
Installing my sdist from PyPI puts the files in unexpected places
My problem is that when I upload my Python package to PyPI, and then install it from there using pip, my app breaks because it installs my files into completely different locations than when I simply ...
1
vote
2answers
884 views
unable to use pip with Python 3.2 using distribute
After installing python3.2 from src, I tried running:
curl -O http://python-distribute.org/distribute_setup.py
sudo python3.2 distribute_setup.py
sudo python3.2 -m easy_install pip
sudo python3.2 -m ...
1
vote
2answers
126 views
How to package example scripts using distribute?
I use distribute to package a small python library. I made a directory structure as described in the Hitchhiker's Guide to Packaging.
My question: Where (in the directory structure) do I place an ...
1
vote
2answers
794 views
Howto install distribute for Python 3
I am trying to install distribute using ActivePython 3.1.2 on Windows.
Running python distribute_setup.py as described on the cheese shop give me:
No setuptools distribution found
running ...
1
vote
3answers
240 views
paster errors after installing distribute 0.6.10
Been working on a Plone site for the last few weeks, it's the first time I've worked on one using buildout for recipes and paster for template generation, and it's been a learning curve.
two days ...
1
vote
2answers
312 views
How to check licence of third-party jars
We distribute a number of third-party jars with our product.
Is there any way I can analyse or perform a lookup on each jar in order to determine its license - e.g. CDDL v1.0, Apache License Version ...