"one-file" executable for non-developers #1951
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
4 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#1951
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I'd like it if Tahoe users (not developers) could download a single
file and run it, rather than pointing them at "quickstart"
instructions that begin with a source download/checkout and then
some build steps. And I'd love it if this meant we could reduce
complexity (by reducing functionality) of our setup.py, because we'd
no longer need to support a single simple command to
acquire/build/locally-install dependencies.
For the one-file executable, I'm thinking bbfreeze, about or if that
doesn't work then something homemade. I recently learned that you
can concatenate a
/usr/bin/env python
line with a zipfilethat contains a directory with an
*init*.py
inside it, andrunning the result will cause python to execute that
__init__.py
. This sounds like a better-supported version ofwhat bbfreeze does (or maybe this is what bbfreeze uses these days,
I dunno). We'd probably publish one version for linux, and a
different one for windows. Maybe one per platform if their binary
dependencies are different. I'd want each one to be self-contained:
no dependency upon system-supplied libraries.
For the remaining setup.py, I'm thinking that maybe virtualenvs are
the way to go. Developer instructions could look like:
python setup.py develop
from the tahoe source tree,which will get
python
from the virtualenv, which will readrequirements.txt
and install everything therein to thevirtualenv, then will pseudo-symlink tahoe itself into the
virtualenv
./bin/tahoe
, which has a/usr/bin/env python
,and will thus use the virtualenv's python. Or, use the
virtualenv's bin/tahoe.
I believe packagers usually build OS packages by running
python setup.py install
in a fakeroot environment, possibly withadditional options to install the results into a local directory
instead of /usr. And that they expect this
install
to not dragin any dependencies. So I'd like that to work for packagers.
I don't know how long-term installation should work, but I'd like
some variant on
sudo python setup.py install
to work, maybe inthe form of two separate commands (one to install dependencies, the
second to install tahoe itself). Another option is to have
developer/installers construct their virtualenv as above, then
simply symlink the virtualenv's bin/tahoe into /usr/local/bin or
something.
I think it's ok to require that developers get virtualenv and
whatever it requires (pip, setuptools, etc) installed first, and
that we shouldn't feel obligated to provide additional source code
to install those for them.
(https://pypi.python.org/pypi/bbfreeze/) is the recently-updated bbfreeze package, which apparently knows how to copy system-supplied shared libraries and DLLs into the generated executable.
wiki/BBFreeze
I'm pretty skeptical about this. We already got bbfreeze working once (#585), and it didn't really solve any problem that we actually had. Almost all of the setuptools bugs/misdesign that cause problems with a normal build, also cause problems with a bbfreeze build, except that the latter is actually worse because no developer uses it, and so it bitrots. Also, the result doesn't in practice work unless you have one per platform ABI variant.
I think we should be using virtualenv for everything. A single-file build cannot possibly meet developer requirements, and so it's always going to be a second-class citizen. A virtualenv build can meet both developer and end-user requirements.
virtualenv-based packaging is #2255.
A one-file package for Mac OS X is #182.
A one-file package for Windows is #195.
I don't think a one-file package for other Unix platforms in general is feasible, but I'm open to counterarguments.
One note: I think I should have said
*main*.py
ormain.py
instead of*init*.py
. See the last section (about the<script>
argument) in https://docs.python.org/2.7/using/cmdline.html#interface-options .There is a PyInstaller package for Tahoe-LAFS now. This is almost a single-file executable. It's also tested on CI and has the advantage of being minimally weird compared to normal installations.
Since it is very similar to bbfreeze and satisfies the "download one thing to run tahoe" I think this can be considered fixed.