python-build-standalone icon indicating copy to clipboard operation
python-build-standalone copied to clipboard

Produce redistributable builds of Python

Results 146 python-build-standalone issues
Sort by recently updated
recently updated
newest added

This is https://bugs.kde.org/show_bug.cgi?id=396415 , but opening it here just for tracking/visibility. When running a script under valgrind mis-reports /proc/self/exe as the path to the script itself instead of the path...

Unlike a system interpreter or a pyenv installation, pbs can't create venv from a symlink to the pbs installation location. PYTHONHOME is in the wrong location (that of the link,...

bug

``` $ find . -name \*.a -exec du -ch {} + 148K ./lib/thread2.8.9/libthread2.8.9.a 492K ./lib/Tix8.4.3/libTix8.4.3.a 516K ./lib/itcl4.2.4/libitcl4.2.4.a 4.0K ./lib/itcl4.2.4/libitclstub4.2.4.a 1.2M total ``` I _think_ these are not particularly useful in...

Minimal example: ```python import subprocess import venv from tempfile import mkdtemp from traceback import print_exc tmp_dir_path = mkdtemp(prefix="venv-create-bug-example.") print(f"creating venv in: {tmp_dir_path}") try: venv.create(tmp_dir_path, with_pip=True) except subprocess.CalledProcessError as e: print_exc()...

bug

Now [PEP 730](https://peps.python.org/pep-0730) is in Python 3.13, it would be good to revive the iOS builds on this project. These were removed in https://github.com/indygreg/python-build-standalone/commit/0ce1527b0adc4b47c34f9fcc65a41db6c7934f6b due to CI overhead and lack...

platforms
platform:darwin

The Windows builds of Python 3.11 and 3.12 (and maybe 3.13 as well - haven't checked) refer to `libcrypto-1_1.dll` and `libssl-1_1.dll` (32-bit) or their 64-bit variants from `PYTHON.json`, while the...

bug

ref https://github.com/astral-sh/uv/issues/10883#issuecomment-2611520235 cc @Xeonacid — I'd appreciate your thoughts

I am trying to build a distributable, by running the build-windows.py I run `{path_to_the_dist_I_want_build}\python.exe build-windows.py --sh C:\cygwin64\bin\sh.exe --options noopt` Everything goes fine, but then it blocks in ``` openssl> "C:\...\python-build-standalone\build\strawberry-perl\perl\bin\perl.exe"...

bug
platform:windows

I still haven't given up on reviving the PyOxidizer project and upgrading the Python distributions that it ships with to more recent versions (up to 3.13) ;-) I'm nearly done...

``` ./build-macos.py --python cpython-3.10 ``` creates a file ``` dist/cpython-3.10.16-aarch64-apple-darwin-noopt-20250114T1622.tar.zst ``` Noopt suggests it is build without optimizations? But logs mention `clang ... -O2`. So this issue is about either:...

question