怎样安装pytz

2025年11月7日 | 分类: 【技术】

【方法:python3-tz】

安装:

sudo apt install python3-tz -y

查验:

python3 -c "import pytz; print(pytz.__version__)"

输出:

2024.1

【方法:pip3 install pytz】

安装:

sudo apt update
sudo apt install python3-pip -y
pip3 install pytz