一、python获取windows各种硬件信息 import psutil # 系统的内存利用率 free = str(round(psutil.virtual_memory().free / (1024.0 * 1024.0 * 1024.0), 2))+'GB' total = str(roun Read More
posted @ 2021-12-09 16:00 www.pu Views(2300) Comments(0) Diggs(0) Edit
安装pipenv pip install pipenv 常用命令 cd进入项目目录执行以下命令使用当前系统的python3创建虚拟环境 pipenv install 出现以上的图 就说明 进入了 虚拟环境 激活虚拟环境 pipenv shell 显示目录信息 即路径 pipenv --where 找 Read More
posted @ 2021-12-09 15:54 www.pu Views(276) Comments(0) Diggs(0) Edit