1. Python/Python-3.8.5

1.1. configure/make

tar.xzをダウンロード

./configure --enable-optimizations

gcc, make を取り込んで置く必要があった。-- ToshinoriMaeno 2020-09-13 00:01:01

sslもないとのことだったので、opensslを入れ直した。-- ToshinoriMaeno 2020-09-15 04:18:21


make は終わるが

ModuleNotFoundError: No module named 'zlib'

1.2. zlib

zlib1gではエラーになるので、

1.3. pip, setuptools

Installing collected packages: setuptools, pip
Successfully installed pip-20.1.1 setuptools-47.1.0

$ whereis pip3.8
pip3: /usr/local/bin/pip3.8 /usr/local/bin/pip3

/usr/local/bin$ ls python*
python3  python3-config  python3.8  python3.8-config

$ ls -l python*
lrwxrwxrwx 1 root root        9  9月  9 09:42 python3 -> python3.8
lrwxrwxrwx 1 root root       16  9月  9 09:42 python3-config -> python3.8-config
-rwxr-xr-x 1 root root 20951072  9月  9 09:42 python3.8
-rwxr-xr-x 1 root root     3087  9月  9 09:42 python3.8-config

これらとは別にいれた ../pip もあるので、混乱するか。 知らん。-- ToshinoriMaeno 2020-09-13 00:09:06

MoinQ: Python/Python-3.8.5 (last edited 2020-09-15 04:18:21 by ToshinoriMaeno)