当前位置:网站首页>怎么自动安装pythn三方库
怎么自动安装pythn三方库
2022-07-05 18:19:00 【终端小蛙】
最近由于经常要换电脑,而换电脑之后同步自己之前的python环境,那么就搞了一个简单的解决方案
- 在原电脑上使用 pip list打印出安装的三方库
pip list
结果如下 - 在新电脑上安装完python环境后,跑下述脚本
import os import re def auto_install(fn:str): # 输入的fn为pip list中输出的格式 libPatten = re.compile("\s*(\w+)\s*([\d\.]+)") with open(fn,"r") as f: lines = f.readlines() for line in lines: libRe = libPatten.match(line) if libRe: libname = libRe.group(1) version = libRe.group(2) os.system("pip install "+libname +"=="+version) if __name__ == "__main__": fn = r"xxx.txt" auto_install(fn)
- 等待自动跑脚本安装即可
好久没更新,哎,自创更新也烦呀
边栏推荐
- VC编程入门浅谈「建议收藏」
- 【在優麒麟上使用Electron開發桌面應】
- Numerical calculation method chapter8 Numerical solutions of ordinary differential equations
- node_ Exporter memory usage is not displayed
- Sophon KG升级3.1:打破数据间壁垒,解放企业生产力
- sample_rate(采樣率),sample(采樣),duration(時長)是什麼關系
- 《2022中国信创生态市场研究及选型评估报告》发布 华云数据入选信创IT基础设施主流厂商!
- Image classification, just look at me!
- Find the first k small element select_ k
- 项目中遇到的问题 u-parse 组件渲染问题
猜你喜欢
LeetCode 6111. 螺旋矩阵 IV
南京大学:新时代数字化人才培养方案探讨
最大人工岛[如何让一个连通分量的所有节点都记录总节点数?+给连通分量编号]
Privacy computing helps secure data circulation and sharing
Simulate the hundred prisoner problem
瀚升优品app翰林优商系统开发功能介绍
Sophon base 3.1 launched mlops function to provide wings for the operation of enterprise AI capabilities
图片数据不够?我做了一个免费的图像增强软件
ConvMAE(2022-05)
Sophon CE社区版上线,免费Get轻量易用、高效智能的数据分析工具
随机推荐
VC编程入门浅谈「建议收藏」
Electron安装问题
Huaxia Fund: sharing of practical achievements of digital transformation in the fund industry
Failed to virtualize table with JMeter
文章中的逻辑词
The 2022 China Xinchuang Ecological Market Research and model selection evaluation report released that Huayun data was selected as the mainstream manufacturer of Xinchuang IT infrastructure!
U-Net: Convolutional Networks for Biomedical Images Segmentation
使用Jmeter虚拟化table失败
隐私计算助力数据的安全流通与共享
金太阳开户安全吗?万一免5开户能办理吗?
Copy the linked list with random pointer in the "Li Kou brush question plan"
Let more young people from Hong Kong and Macao know about Nansha's characteristic cultural and creative products! "Nansha kylin" officially appeared
Sophon autocv: help AI industrial production and realize visual intelligent perception
彻底理解为什么网络 I/O 会被阻塞?
【HCIA-cloud】【1】云计算的定义、什么是云计算、云计算的架构与技术说明、华为云计算产品、华为内存DDR配置工具说明
个人对卷积神经网络的理解
Is it safe for Apple mobile phone to speculate in stocks? Is it a fraud to get new debts?
Le cours d'apprentissage de la machine 2022 de l'équipe Wunda arrive.
Introduction to Resampling
Sophon CE社区版上线,免费Get轻量易用、高效智能的数据分析工具