摘要:
python 获取目录, 路径 import os print(" 获取当前文件目录 ") # 当前脚本工作的目录路径 print(os.getcwd()) # os.path.abspath()获得绝对路径 print(os.path.abspath(os.path.dirname(__file_ 阅读全文
摘要:
make编译报错:fatal error: filesystem: 没有那个文件或目录 #include https://www.cnblogs.com/zhengyan6/p/18119833 https://blog.csdn.net/weixin_45867382/article/detail 阅读全文
摘要:
数值计算中的相对误差,绝对误差 相对误差: Relative tolerance (RTOL) controls local error relative to the size of the solution— RTOL = 10-4 means that errors are controlle 阅读全文
摘要:
Cannot find onnx/onnx.pb.h 解决方法 问题: https://github.com/onnx/onnx/issues/1947 https://github.com/onnx/onnx/issues/3074 https://github.com/onnx/onnx/iss 阅读全文
摘要:
Linux下c/c++头文件和动态库的搜索 https://stibel.icu/md/c++/tips/c++-tips-search-head-lib.html https://kerneltravel.net/blog/2020/c_c-_path/ https://www.cnblogs.c 阅读全文
摘要:
Protocol Buffer Error on compile during GOOGLE_PROTOBUF_MIN_PROTOC_VERSION check 出现这个问题 一般是安装了多个版本 protobuf https://stackoverflow.com/questions/357445 阅读全文
摘要:
Ubuntu下 卸载protobuf并安装指定版本的protobuf 如果用pip 源安装, 同时用手动安装, 版本不一致,会导致报错: Protoc Version 版本冲突 卸载 执行以下命令把protobuf相关文件夹及库文件删除即可 sudo rm /usr/local/bin/protoc 阅读全文
摘要:
桌面代理工具 sing-box https://tisyang.github.io/post/2024-09-12-a-simple-config-of-sing-box/ 阅读全文
摘要:
python 输出重定向 https://python3-cookbook.readthedocs.io/zh-cn/latest/c14/p01_testing_output_sent_to_stdout.html https://www.cnblogs.com/clover-toeic/p/54 阅读全文
摘要:
ImportError: libopenblas.so.0: cannot open shared object file 解决: sudo apt-get install libopenblas-dev 查看某so 是否全部正常link: ldd -r libxxx.so 阅读全文