上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 46 下一页
摘要: 处理方法: https://blog.csdn.net/kalath_aiur/article/details/103945309 阅读全文
posted @ 2023-03-23 11:07 代码诠释的世界 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 1、报错原因 路径中出现中文字符 2、处理方法 修改文件路径为英文 参考链接: https://blog.csdn.net/qq_54000767/article/details/129292229 阅读全文
posted @ 2023-03-23 10:20 代码诠释的世界 阅读(2412) 评论(0) 推荐(0) 编辑
摘要: 1、场景 平时使用pycharm,有时出现导包问题,将那个目录Mark Directory as sources root,然后就可以正常运行代码了 2、原理 其实主要就是将那个目录加到PYTHONPATH中 先看未标记为sources root的PYTHONPATH环境变量输出 import os 阅读全文
posted @ 2023-03-21 21:02 代码诠释的世界 阅读(1352) 评论(0) 推荐(0) 编辑
摘要: 1、官方文档 https://docs.python.org/3/library/concurrent.futures.html 2、安装 python 3.x中自带了concurrent.futures模块 python 2.7需要安装futures模块,使用命令pip install futur 阅读全文
posted @ 2023-03-21 15:35 代码诠释的世界 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1、报错 无法运行R错误加载共享库:libblas.so.3 2、处理方法 sudo apt-get install libblas3 3、如果报错Unable to locate package xxxx 解决办法 # 1.首先尝试update命令 sudo apt-get update # 2. 阅读全文
posted @ 2023-03-21 10:33 代码诠释的世界 阅读(381) 评论(0) 推荐(0) 编辑
摘要: 1、编写自己的proto接口文件 syntax = "proto3"; package helloworld; // 对应包名 // 定义服务 service Greeter { // Sends a greeting rpc SayHello (HelloRequest) returns (Hel 阅读全文
posted @ 2023-03-21 10:20 代码诠释的世界 阅读(1442) 评论(0) 推荐(1) 编辑
摘要: 1、目的 由于工作需要,需要查询包含某个接口的文件 2、方法 基于grep查询包含某个文件的内容 -> % grep --help Usage: grep [OPTION]... PATTERNS [FILE]... Search for PATTERNS in each FILE. Example 阅读全文
posted @ 2023-03-21 10:00 代码诠释的世界 阅读(1684) 评论(0) 推荐(0) 编辑
摘要: 1、场景 从接口读取数据写入文件时,在文件中显示的是Unicode字符 2、处理方法 import json def read_json_file(file_path): try: with open(file_path, mode='r', encoding='utf-8') as fp: res 阅读全文
posted @ 2022-10-26 10:06 代码诠释的世界 阅读(949) 评论(0) 推荐(0) 编辑
摘要: 1、官网 官网http://www.squid-cache.org/linux 2、代理服务器 正向代理:客户端(内网) >squid >服务器centos 反向代理:服务器 >squid >客户端(内网) 3、dockerhub https://hub.docker.com/r/ubuntu/sq 阅读全文
posted @ 2022-10-25 22:51 代码诠释的世界 阅读(4014) 评论(0) 推荐(1) 编辑
摘要: 1、场景 自动化测试中,需要将一些接口自动的写入到yaml中, 但是发现文件中显示的是Unicode字符 2、处理方法 import yaml def load_yaml_data(file_path): try: with open(file_path, 'r', encoding='utf-8' 阅读全文
posted @ 2022-10-25 21:02 代码诠释的世界 阅读(303) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 46 下一页