distribute

How can I make setuptools (or distribute) install a package from the local file system

放肆的年华 提交于 2019-12-03 09:48:20
Is it possible to specify (editable) source dependencies in setup.py that are known to reside on the local file system? Consider the following directory structure, all of which lives in a single VCS repository: projects utils setup.py ... app1 setup.py ... # app1 files depend on ../utils app2 setup.py ... # app2 files depend on ../utils Given the following commands: cd projects mkvirtualenv app1 pip install -e app1 I'd like to have all the dependencies for app1 installed, including "utils", which is an "editable" dependency. Likewise, if I did the same for app2. I've tried playing with all

PySide集成开发环境下载安装配置

爷,独闯天下 提交于 2019-12-03 09:00:03
现在学习python pyside 等,边学边写呵,大侠们都不屑呵,我先写一篇 摸索了一段时间,用了不同的GUI库和集成开发环境还是这个简单 下载地址: http://www.python.org/ http://pypi.python.org/pypi/distribute (python3需要装这个) http://qt-project.org/wiki/PySide http://eric-ide.python-projects.org/eric-download.html 在window下安装都简单文件列表如下: python-3.3.0.msi PySide-1.1.2.win32-py3.3.exe distribute-0.6.34.tar.gz 解压后看readme.text安装 下面两个解压后合并后安装 eric5-5.2.7.zip eric5-i18n-zh_CN.GB2312-5.2.7.zip eric5需要PyQt4支持呵,PyQt4有两个许可证,可以看看 PyQt4 http://www.riverbankcomputing.co.uk/software/pyqt/download 下载后的文件列表: PyQt-Py3.3-x86-gpl-4.9.6-1.exe 维基百科: PySide 是跨平台的应用程式框架 Qt 的 Python 绑定版本 。

python-pip yum package provides pip-python instead of pip

泪湿孤枕 提交于 2019-12-03 05:02:25
问题 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:/usr/local/bin:/bin: /usr/bin:/usr/local/sbin:/usr/sbin:/sbin) It does, however, create pip-python : $ rpm -ql python-pip /usr/bin/pip-python [...snip...] $ which pip-python /usr/bin/pip-python I was considering making pip a symbolic link to pip-python but is there a reason the executable is named

Upload Android app to google play step by step…? [closed]

半腔热情 提交于 2019-12-03 03:13:36
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . 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 certificate not use for

what is the best practice of distributing binaries from a github project? [closed]

梦想与她 提交于 2019-12-03 02:42:28
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . 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 meant to store source code and not binaries Storing large and regularly changing binaries may be expensive qua diskspace and

How can I correctly install multiple non-package Distribute/virtualenv/pip ecosystems on Ubuntu?

六眼飞鱼酱① 提交于 2019-12-03 00:18:37
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 Synaptic, or rather I let the system manage them for me). I could just install the python-setuptools, python-virtualenv and python-pip system packages and be on my merry way, but I also want to be able to get latest/specific versions of Distribute, virtualenv and pip. There are no PPAs for these, so I'll have to install them manually. A final complication, is that I want to be able to do this for

Bundle Python app without interpreter

烂漫一生 提交于 2019-12-02 19:29:03
问题 I have a Python script with just minimal import (=psutil) and have bundled it with py2app. However, the resulting app is almost 9 MB because it includes the interpreter. I am looking for ways to reduce the size - the best way I can think of is to exclude the interpreter from the bundle and let the app use the client's native interpreter. Right now I am doing it only for Mac but will need to do it for all platforms. I have looked at squeeze ( http://effbot.org/zone/squeeze.htm ) but it seems

python-pip yum package provides pip-python instead of pip

非 Y 不嫁゛ 提交于 2019-12-02 19:23:19
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:/usr/local/bin:/bin: /usr/bin:/usr/local/sbin:/usr/sbin:/sbin) It does, however, create pip-python : $ rpm -ql python-pip /usr/bin/pip-python [...snip...] $ which pip-python /usr/bin/pip-python I was considering making pip a symbolic link to pip-python but is there a reason the executable is named pip-python to begin with? It is probably to avoid a conflict with another package that has an executable

How do setuptools, distribute, and pip relate to one another?

若如初见. 提交于 2019-12-02 17:15:44
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 pip was clear enough. It allows me to install/uninstall, and upgrade packages. Reading the documentation for distribute, it basically seems to do the same thing: Easily download, build, install, upgrade, and uninstall Python packages What's the difference between pip and distribute, and how do they relate to one another? Ned Deily [ 2014-10 TL;DR: distribute is dead, use pip , the new setuptools ,

Upload Android app to google play step by step…? [closed]

瘦欲@ 提交于 2019-12-02 15:19:21
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 certificate not use for distribute. can any one help me to create self signed certificate. I'm using mac os and eclipse as ide for development. 2) After creating appropriate .apk with self signed certificate. what is the process to upload it and where? Is there any account I've to create on google play through which I can upload and manage my app (like iphone developer account). Can't get a better breakdown than the