distribute Questions
5
Solved
The Situation
I’m trying to port an open-source library to Python 3. (SymPy, if anyone is wondering.)
So, I need to run 2to3 automatically when building for Python 3. To do that, I need to use d...
Skiver asked 14/6, 2011 at 13:17
1
Solved
I know I can install with
$ pip install -e git+https://git.repo/some_pkg#egg=SomePackage
but -- when I'm trying to use somebody else's package -- how do I determine what the name of the egg is?...
Hidie asked 7/2, 2014 at 22:26
2
Solved
In a crusade to make my application pip-installable, I'm fighting big fights with setuptools and distribute. I assume my dependencies are correct, i.e. installing with pip install myapp should prob...
Glide asked 7/3, 2012 at 19:10
4
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...
Lower asked 1/9, 2011 at 19:14
3
Solved
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 Syna...
Didst asked 25/7, 2011 at 5:50
2
My goal is to distribute a Python package that has several other widely used Python packages as dependencies. My package depends on well written, Pypi-indexed packages like pandas, scipy and numpy,...
Syllabogram asked 2/2, 2013 at 18:45
3
Solved
I installed python-pip package via yum (using Fedora's updates repo). It does not add the pip script to my PATH though.
$ which pip
/usr/bin/which: no pip in
(/usr/kerberos/sbin:/usr/kerberos/bin...
Qr asked 8/11, 2010 at 18:23
1
Solved
I've been trying to install a package with the following setup configured:
setup(
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django==1.5.1',
'xhtml2pdf',
],
de...
Cupule asked 28/6, 2013 at 14:16
1
Solved
I am writing a reusable Django app as described here:
https://django.readthedocs.org/en/1.5.x/intro/reusable-apps.html
When I specify a requirement in setup.py that contains a dash in the package ...
Gabler asked 21/4, 2013 at 1:29
1
Solved
I'm looking for a way to install a bunch of python modules in .exe format like:
ipython-0.13.1.py2-win32-PROPER.exe
scipy-0.12.0b1.win32-py2.7.exe
numpy-MKL-1.7.0.win32-py2.7.exe
pywin32-218.win32...
Vagary asked 18/3, 2013 at 18:59
0
I have a project that is described using the standard setup.py setup, with some .py files that are intended to be executable (in the scripts= part of the package) and some .py files that are just l...
Jezebel asked 3/2, 2013 at 19:40
3
Solved
what is the best practice of distributing binaries from a github project?
I can think of:
Create a bin folder in your project where you keep a copy of the binaries.
However, github is me...
Spirelet asked 27/4, 2012 at 7:18
1
Solved
I'm developing a distribution for the Python package I'm writing so I can post
it on PyPI. It's my first time working with distutils, setuptools, distribute,
pip, setup.py and all that and I'm stru...
Raby asked 21/1, 2013 at 10:43
1
Solved
Kinda followup to this... :)
My project is Python 3-only and my question is basically how I tell distutils/distribute/whoever that this package is Python 3-only?
Venous asked 14/11, 2012 at 18:52
1
Solved
1)
I'm newbie to android distribution,my application is ready and now I want to distribute it through google play. But I can't find how to create certificate, because default debug certificat...
Nonentity asked 1/8, 2012 at 12:47
1
Solved
Python 3.3 will come with a new packaging tool called "packaging":
The new "packaging" module, building upon the "distribute" and
"distutils2" projects and deprecating "distutils"
Does this m...
Earring asked 9/5, 2012 at 21:6
1
Solved
Since upgrading to subversion 1.7 I get "unrecognized .svn/entries format" when running buildout. I notice there is an unresolved bug reports for both distribute and setuptools for this error and i...
Dianndianna asked 24/3, 2012 at 12:50
1
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 http://packages.python.org/an_exam...
Radloff asked 20/12, 2011 at 18:4
1
At first, I only want to use install feedparser with python3.2, while it need Distribute. When I install Distribute with
python3.2 setup.py install
I got
File "/usr/local/lib/python3.2/zipfil...
Teamwork asked 17/2, 2012 at 12:14
1
Solved
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 fo...
Samoyedic asked 18/12, 2011 at 5:47
2
Solved
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 m...
Hardbitten asked 29/9, 2011 at 11:24
1
Solved
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
...
Levantine asked 5/5, 2011 at 12:31
3
Solved
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...
Endymion asked 4/4, 2011 at 8:8
2
Solved
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 simp...
Merc asked 4/3, 2011 at 10:15
5
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 in...
Carlina asked 29/12, 2009 at 23:6
© 2022 - 2024 — McMap. All rights reserved.