Original AlpineJS | Svelte Translation | Explanation |
---|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# check current | |
$ python3 --version | |
Python 3.9.2 | |
$ sudo apt-get install -y --no-install-recommends software-properties-common wget build-essential pkg-config zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev | |
$ wget https://www.python.org/ftp/python/3.11.0/Python-3.11.0.tar.xz | |
$ tar -xf Python-3.11.0.tar.xz | |
$ cd Python-3.11.0 | |
$ ./configure --enable-optimizations | |
$ make |