参考信息 MySQL8.X版本开放root远程连接(Ubuntu20) 本人PC配置信息 OS:Ubuntu20.04 MySQL:8 安装命令 sudo apt update sudo apt install mysql-server 开启远程连接 sudo vim /etc/mysql/mysq ...
分类:
数据库 时间:
2021-03-30 12:56:35
阅读次数:
0
# coding=gbk import os import csv import pandas as pd import shutil # 获取指定文件夹中后缀.svs的文件 def get_svsfile(path_svs): f_list = os.listdir(path_svs) for i ...
分类:
编程语言 时间:
2021-03-29 12:14:06
阅读次数:
0
先看看多少代码量 import os file_types = ['py', 'html', 'css', 'js', ] def count_code_nums(file): """获取单个文件的行数 """ with open(file, mode='rb') as f: return len( ...
分类:
其他好文 时间:
2021-03-29 12:13:33
阅读次数:
0
用spyder运行正常,程序上传到服务器,添加计划任务,运行报错:ModuleNotFoundError: No module named 'selenium',实际上已经安装了。 搜索一番,有人说程序前面加上: import sys import os curPath = os.path.absp ...
分类:
其他好文 时间:
2021-03-29 11:49:17
阅读次数:
0
前提: 原统计文档中条目以空格分隔或只有一列(为了方便awk筛选出某一个列) 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 import sys 4 import os 5 6 PRINTRED = "\033[1;31m" 7 PRINTGR ...
分类:
编程语言 时间:
2021-03-18 14:42:22
阅读次数:
0
参考:https://www.imooc.com/article/303110?block_id=tuijian_wz 环境: 操作系统: mac os 11.2.3 idea版本: 社区版 2020.3.2 步骤: 1. 2.打开 Settings -> Plugins,(按照步骤选择,因为我已经 ...
分类:
编程语言 时间:
2021-03-18 14:25:01
阅读次数:
0
原因:是因为gpu显存太小而导致的错误。 解决方法: 1.将batch_size改小 2.不用gpu训练,改用cpu训练 import os os.environ["CUDA_VISIBLE_DEVICES"] = "-1" ...
分类:
其他好文 时间:
2021-03-16 13:56:03
阅读次数:
0
# coding=utf-8import osn = 0for root, dir, files in os.walk('.'): for name in files: if ("final" not in name): n+=1 print(n,name) os.remove(os.path.jo ...
分类:
其他好文 时间:
2021-03-15 11:04:56
阅读次数:
0
import os,sysimport csvfile_folder = sys.argv[1]# file_folder = r"/Users/vito/Desktop/0120 "final_info={}txt_path_list=[]# 如需要处理更多log信息,在下面三行最后面添加; 如果 ...
分类:
其他好文 时间:
2021-03-15 11:04:03
阅读次数:
0
文件备份与重命名 # 2种方式打开文件、备份文件、 import os # 打开文件 class FileOpen: @staticmethod def file_open1(file): fp = open(file, "w+", encoding="utf-8") # 无需flush,因为clo ...
分类:
其他好文 时间:
2021-03-15 10:54:22
阅读次数:
0