python-build-standalone
python-build-standalone copied to clipboard
Produce redistributable builds of Python
I am using the bazel/rules_python to compile our python code. according to the configuration, we are using the cpython-3.9.13+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz as our python interpreter. But as we are using the Tkinter,...
In darwin artifacts downloaded from the release page, the file `lib/python3.10/_sysconfigdata__darwin_darwin.py` contains the following flag: ``` -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk ``` If the machine has only Command Line Tools installed, then trying...
## Feature Request In Python 3.10 `./configure` you can pass option `--with-experimental-isolated-subinterpreters` (this just does `#define EXPERIMENTAL_ISOLATED_SUBINTERPRETERS 1`) which enables experimental feature of isolated interpreters, which allows to run multiple...
https://github.com/indygreg/python-build-standalone/issues/13 outlines some of the reasons why MinGW builds might be advantageous, but there is also the benefit of gcc/clang toolchain being more managable, and the possibility of using cross-compiling....
Hi, Would it be possible to ship the builds including a private pythonpath defined in a file? The common portable windows python from python.org contains a ._pth file where the...
https://github.com/indygreg/python-build-standalone/blob/b292b16d25c61ac7dd962a4a4b52cd34724b33f6/cpython-windows/build.py#L235-L236 If you also pass the `-utf8` option to vswhere, you can be guaranteed that it will write out a UTF-8 formatted path.
I'm running on a remote VM with the following properties: Windows Server 2016 Datacenter Version 1607 Intel Xeon Platinum 8175M CPU 8GM of RAM 64 bit operating system, x64-based processor...
Hi, I try to build cpython-3.8 on Windows 10 and got the issue: ``` Traceback (most recent call last): File "build.py", line 22, in from pythonbuild.utils import ( File "C:\Work\python-build-standalone\pythonbuild\utils.py",...
I’d like to have the aarch64 version of musl-based build. It seems that I could just add a new triple to the build matrix. Is there anything more to consider?...
I'm finding unnecessarily difficult to predict the name of the final distribution after a build. Can a simple switch be added to control the actual base name name of the...