摘要: 1、场景 平时使用pycharm,有时出现导包问题,将那个目录Mark Directory as sources root,然后就可以正常运行代码了 2、原理 其实主要就是将那个目录加到PYTHONPATH中 先看未标记为sources root的PYTHONPATH环境变量输出 import os 阅读全文
posted @ 2023-03-21 21:02 代码诠释的世界 阅读(1359) 评论(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 代码诠释的世界 阅读(111) 评论(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 代码诠释的世界 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 1、编写自己的proto接口文件 syntax = "proto3"; package helloworld; // 对应包名 // 定义服务 service Greeter { // Sends a greeting rpc SayHello (HelloRequest) returns (Hel 阅读全文
posted @ 2023-03-21 10:20 代码诠释的世界 阅读(1457) 评论(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 代码诠释的世界 阅读(1690) 评论(0) 推荐(0) 编辑