├── .github └── workflows │ └── build.yml ├── .gitlab-ci.yml ├── 3.10 ├── x86 │ ├── Dockerfile │ ├── deplib │ │ ├── build_bzip2.sh │ │ ├── build_expat.sh │ │ ├── build_ffi.sh │ │ ├── build_gdbm.sh │ │ ├── build_gettext.sh │ │ ├── build_lzma.sh │ │ ├── build_musl.sh │ │ ├── build_ncurses.sh │ │ ├── build_openssl.sh │ │ ├── build_python.sh │ │ ├── build_readline.sh │ │ ├── build_sqlite3.sh │ │ ├── build_tcl.sh │ │ ├── build_uuid.sh │ │ ├── build_xz.sh │ │ ├── build_zlib.sh │ │ ├── config.mak │ │ ├── install_pip.sh │ │ └── patch │ │ │ └── fix-ncurses-underlinking.patch │ ├── interpreter-patcher.sh │ ├── packing-initializer │ ├── pip-wrapper │ └── python-wrapper └── x86_64 │ ├── Dockerfile │ ├── deplib │ ├── build_bzip2.sh │ ├── build_expat.sh │ ├── build_ffi.sh │ ├── build_gdbm.sh │ ├── build_gettext.sh │ ├── build_lzma.sh │ ├── build_musl.sh │ ├── build_ncurses.sh │ ├── build_openssl.sh │ ├── build_python.sh │ ├── build_readline.sh │ ├── build_sqlite3.sh │ ├── build_tcl.sh │ ├── build_uuid.sh │ ├── build_xz.sh │ ├── build_zlib.sh │ ├── config.mak │ ├── install_pip.sh │ └── patch │ │ └── fix-ncurses-underlinking.patch │ ├── interpreter-patcher.sh │ ├── packing-initializer │ ├── pip-wrapper │ └── python-wrapper ├── 3.11 ├── x86 │ ├── Dockerfile │ ├── deplib │ │ ├── build_bzip2.sh │ │ ├── build_expat.sh │ │ ├── build_ffi.sh │ │ ├── build_gdbm.sh │ │ ├── build_gettext.sh │ │ ├── build_lzma.sh │ │ ├── build_musl.sh │ │ ├── build_ncurses.sh │ │ ├── build_openssl.sh │ │ ├── build_python.sh │ │ ├── build_readline.sh │ │ ├── build_sqlite3.sh │ │ ├── build_tcl.sh │ │ ├── build_uuid.sh │ │ ├── build_xz.sh │ │ ├── build_zlib.sh │ │ ├── config.mak │ │ ├── install_pip.sh │ │ └── patch │ │ │ └── fix-ncurses-underlinking.patch │ ├── interpreter-patcher.sh │ ├── packing-initializer │ ├── pip-wrapper │ └── python-wrapper └── x86_64 │ ├── Dockerfile │ ├── deplib │ ├── build_bzip2.sh │ ├── build_expat.sh │ ├── build_ffi.sh │ ├── build_gdbm.sh │ ├── build_gettext.sh │ ├── build_lzma.sh │ ├── build_musl.sh │ ├── build_ncurses.sh │ ├── build_openssl.sh │ ├── build_python.sh │ ├── build_readline.sh │ ├── build_sqlite3.sh │ ├── build_tcl.sh │ ├── build_uuid.sh │ ├── build_xz.sh │ ├── build_zlib.sh │ ├── config.mak │ ├── install_pip.sh │ └── patch │ │ └── fix-ncurses-underlinking.patch │ ├── interpreter-patcher.sh │ ├── packing-initializer │ ├── pip-wrapper │ └── python-wrapper ├── 3.12 ├── x86 │ ├── Dockerfile │ ├── deplib │ │ ├── build_bzip2.sh │ │ ├── build_expat.sh │ │ ├── build_ffi.sh │ │ ├── build_gdbm.sh │ │ ├── build_gettext.sh │ │ ├── build_lzma.sh │ │ ├── build_musl.sh │ │ ├── build_ncurses.sh │ │ ├── build_openssl.sh │ │ ├── build_python.sh │ │ ├── build_readline.sh │ │ ├── build_sqlite3.sh │ │ ├── build_tcl.sh │ │ ├── build_uuid.sh │ │ ├── build_xz.sh │ │ ├── build_zlib.sh │ │ ├── config.mak │ │ ├── install_pip.sh │ │ └── patch │ │ │ └── fix-ncurses-underlinking.patch │ ├── interpreter-patcher.sh │ ├── packing-initializer │ ├── pip-wrapper │ └── python-wrapper └── x86_64 │ ├── Dockerfile │ ├── deplib │ ├── build_bzip2.sh │ ├── build_expat.sh │ ├── build_ffi.sh │ ├── build_gdbm.sh │ ├── build_gettext.sh │ ├── build_lzma.sh │ ├── build_musl.sh │ ├── build_ncurses.sh │ ├── build_openssl.sh │ ├── build_python.sh │ ├── build_readline.sh │ ├── build_sqlite3.sh │ ├── build_tcl.sh │ ├── build_uuid.sh │ ├── build_xz.sh │ ├── build_zlib.sh │ ├── config.mak │ ├── install_pip.sh │ └── patch │ │ └── fix-ncurses-underlinking.patch │ ├── interpreter-patcher.sh │ ├── packing-initializer │ ├── pip-wrapper │ └── python-wrapper ├── LICENSE ├── README.md ├── assets └── icon.png ├── ci └── packing_release_tar.sh └── docs ├── ARCHITECTURE.md ├── BUILD.md ├── CI_CD.md ├── CONTRIBUTING.md ├── FAQ.md ├── INSTALLATION.md ├── README.md ├── TECHNICAL.md ├── TROUBLESHOOTING.md └── USAGE.md /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /3.10/x86/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/Dockerfile -------------------------------------------------------------------------------- /3.10/x86/deplib/build_bzip2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_bzip2.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_expat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_expat.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_ffi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_ffi.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_gdbm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_gdbm.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_gettext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_gettext.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_lzma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_lzma.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_musl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_musl.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_ncurses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_ncurses.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_openssl.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_python.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_readline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_readline.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_sqlite3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_sqlite3.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_tcl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_tcl.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_uuid.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /3.10/x86/deplib/build_xz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_xz.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/build_zlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/build_zlib.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/config.mak -------------------------------------------------------------------------------- /3.10/x86/deplib/install_pip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/install_pip.sh -------------------------------------------------------------------------------- /3.10/x86/deplib/patch/fix-ncurses-underlinking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/deplib/patch/fix-ncurses-underlinking.patch -------------------------------------------------------------------------------- /3.10/x86/interpreter-patcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/interpreter-patcher.sh -------------------------------------------------------------------------------- /3.10/x86/packing-initializer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/packing-initializer -------------------------------------------------------------------------------- /3.10/x86/pip-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/pip-wrapper -------------------------------------------------------------------------------- /3.10/x86/python-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86/python-wrapper -------------------------------------------------------------------------------- /3.10/x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/Dockerfile -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_bzip2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_bzip2.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_expat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_expat.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_ffi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_ffi.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_gdbm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_gdbm.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_gettext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_gettext.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_lzma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_lzma.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_musl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_musl.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_ncurses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_ncurses.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_openssl.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_python.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_readline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_readline.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_sqlite3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_sqlite3.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_tcl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_tcl.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_uuid.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_xz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_xz.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/build_zlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/build_zlib.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/config.mak -------------------------------------------------------------------------------- /3.10/x86_64/deplib/install_pip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/install_pip.sh -------------------------------------------------------------------------------- /3.10/x86_64/deplib/patch/fix-ncurses-underlinking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/deplib/patch/fix-ncurses-underlinking.patch -------------------------------------------------------------------------------- /3.10/x86_64/interpreter-patcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/interpreter-patcher.sh -------------------------------------------------------------------------------- /3.10/x86_64/packing-initializer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/packing-initializer -------------------------------------------------------------------------------- /3.10/x86_64/pip-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/pip-wrapper -------------------------------------------------------------------------------- /3.10/x86_64/python-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.10/x86_64/python-wrapper -------------------------------------------------------------------------------- /3.11/x86/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/Dockerfile -------------------------------------------------------------------------------- /3.11/x86/deplib/build_bzip2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_bzip2.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_expat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_expat.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_ffi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_ffi.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_gdbm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_gdbm.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_gettext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_gettext.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_lzma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_lzma.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_musl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_musl.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_ncurses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_ncurses.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_openssl.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_python.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_readline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_readline.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_sqlite3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_sqlite3.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_tcl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_tcl.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_uuid.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /3.11/x86/deplib/build_xz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_xz.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/build_zlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/build_zlib.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/config.mak -------------------------------------------------------------------------------- /3.11/x86/deplib/install_pip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/install_pip.sh -------------------------------------------------------------------------------- /3.11/x86/deplib/patch/fix-ncurses-underlinking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/deplib/patch/fix-ncurses-underlinking.patch -------------------------------------------------------------------------------- /3.11/x86/interpreter-patcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/interpreter-patcher.sh -------------------------------------------------------------------------------- /3.11/x86/packing-initializer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/packing-initializer -------------------------------------------------------------------------------- /3.11/x86/pip-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/pip-wrapper -------------------------------------------------------------------------------- /3.11/x86/python-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86/python-wrapper -------------------------------------------------------------------------------- /3.11/x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/Dockerfile -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_bzip2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_bzip2.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_expat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_expat.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_ffi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_ffi.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_gdbm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_gdbm.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_gettext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_gettext.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_lzma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_lzma.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_musl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_musl.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_ncurses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_ncurses.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_openssl.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_python.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_readline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_readline.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_sqlite3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_sqlite3.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_tcl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_tcl.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_uuid.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_xz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_xz.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/build_zlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/build_zlib.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/config.mak -------------------------------------------------------------------------------- /3.11/x86_64/deplib/install_pip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/install_pip.sh -------------------------------------------------------------------------------- /3.11/x86_64/deplib/patch/fix-ncurses-underlinking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/deplib/patch/fix-ncurses-underlinking.patch -------------------------------------------------------------------------------- /3.11/x86_64/interpreter-patcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/interpreter-patcher.sh -------------------------------------------------------------------------------- /3.11/x86_64/packing-initializer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/packing-initializer -------------------------------------------------------------------------------- /3.11/x86_64/pip-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/pip-wrapper -------------------------------------------------------------------------------- /3.11/x86_64/python-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.11/x86_64/python-wrapper -------------------------------------------------------------------------------- /3.12/x86/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/Dockerfile -------------------------------------------------------------------------------- /3.12/x86/deplib/build_bzip2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_bzip2.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_expat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_expat.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_ffi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_ffi.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_gdbm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_gdbm.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_gettext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_gettext.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_lzma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_lzma.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_musl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_musl.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_ncurses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_ncurses.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_openssl.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_python.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_readline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_readline.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_sqlite3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_sqlite3.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_tcl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_tcl.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_uuid.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /3.12/x86/deplib/build_xz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_xz.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/build_zlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/build_zlib.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/config.mak -------------------------------------------------------------------------------- /3.12/x86/deplib/install_pip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/install_pip.sh -------------------------------------------------------------------------------- /3.12/x86/deplib/patch/fix-ncurses-underlinking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/deplib/patch/fix-ncurses-underlinking.patch -------------------------------------------------------------------------------- /3.12/x86/interpreter-patcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/interpreter-patcher.sh -------------------------------------------------------------------------------- /3.12/x86/packing-initializer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/packing-initializer -------------------------------------------------------------------------------- /3.12/x86/pip-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/pip-wrapper -------------------------------------------------------------------------------- /3.12/x86/python-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86/python-wrapper -------------------------------------------------------------------------------- /3.12/x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/Dockerfile -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_bzip2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_bzip2.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_expat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_expat.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_ffi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_ffi.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_gdbm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_gdbm.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_gettext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_gettext.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_lzma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_lzma.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_musl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_musl.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_ncurses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_ncurses.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_openssl.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_python.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_readline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_readline.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_sqlite3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_sqlite3.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_tcl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_tcl.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_uuid.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_xz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_xz.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/build_zlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/build_zlib.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/config.mak -------------------------------------------------------------------------------- /3.12/x86_64/deplib/install_pip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/install_pip.sh -------------------------------------------------------------------------------- /3.12/x86_64/deplib/patch/fix-ncurses-underlinking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/deplib/patch/fix-ncurses-underlinking.patch -------------------------------------------------------------------------------- /3.12/x86_64/interpreter-patcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/interpreter-patcher.sh -------------------------------------------------------------------------------- /3.12/x86_64/packing-initializer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/packing-initializer -------------------------------------------------------------------------------- /3.12/x86_64/pip-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/pip-wrapper -------------------------------------------------------------------------------- /3.12/x86_64/python-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/3.12/x86_64/python-wrapper -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/assets/icon.png -------------------------------------------------------------------------------- /ci/packing_release_tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/ci/packing_release_tar.sh -------------------------------------------------------------------------------- /docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/docs/ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/docs/BUILD.md -------------------------------------------------------------------------------- /docs/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/docs/CI_CD.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/docs/INSTALLATION.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/TECHNICAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/docs/TECHNICAL.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/docs/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /docs/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scc-tw/standalone-python/HEAD/docs/USAGE.md --------------------------------------------------------------------------------