Python3 
バージョンの切り替え(CentOS/Rocky Linux) 
モジュールのインストール 
dnf module -y install python38
dnf module -y install python39
切り替え 
alternatives --config python3
python3 -V
* はデフォルト --auto でデフォルトになる
+ は現在の選択
pip3.# install --upgrade pip
Programing 
3.10.10 
2**2**2**2**2
ValueError: Exceeds the limit (10000) for integer string conversion; use sys.set_int_max_str_digits() to increase the limit
- DOS 回避のためデフォルトで桁数を制限するようになった
import sys
sys.set_int_max_str_digits(100000)
2**2**2**2**2
開発 
モージュールのコンパイルインストール 
setup.py がある場合 
- ./setup.py build
- ./setup.py install
pickle ファイル 
- python -m pickle hogehoge.pkl
Counter: 605,
today: 2,
yesterday: 1
最終更新: 2023-05-04 (木) 23:15:39 (JST) (946d) by iseki