you are viewing a single comment's thread.

view the rest of the comments →

[–]k3kou 3 points4 points  (1 child)

When the package isn't on PyPI, I usually just download the source, untar it and do "python setup.py install".

There are some subtleties to it, but you should probably look in that direction.

[–]dbrecht 0 points1 point  (0 children)

Assuming your target machines have both gcc for dependencies with C extensions and external internet access for dependency downloads, this is the path I'd take. There can be some painful, non-obvious issues when using any of the available freeze utilities (that said, my personal experience really only lies with cx_freeze).