摘要:
使用如下命令直接安装可执行文件: install.packages("XML", type = "binary") 亲测有效 参考:https://stackoverflow.com/questions/26042751/cannot-install-package-xml-to-r 阅读全文
随笔档案-2020年07月
python实现git操作
2020-07-06 14:49 by 安达小狗, 1219 阅读, 收藏, 编辑
摘要:
#!/usr/bin/python #-*- coding:utf-8 -*- import os import argparse from git.repo import Repo def clone(repo_url, token, abs_local_repo): repo_full_url 阅读全文