ruby-gem-source
ruby gem source 更新 Ruby Gems 镜像使用帮助 gem 使用以下命令替换 gems 默认源 # 添加 TUNA 源并移除默认源 gem sources --add https://mirrors.tuna.tsinghua.edu.cn/rubygems/ --remove https://rubygems.org/ # 列出已有源 gem sources -l # 应该只…
ruby gem source 更新 Ruby Gems 镜像使用帮助 gem 使用以下命令替换 gems 默认源 # 添加 TUNA 源并移除默认源 gem sources --add https://mirrors.tuna.tsinghua.edu.cn/rubygems/ --remove https://rubygems.org/ # 列出已有源 gem sources -l # 应该只…
coolprop 编译注意事项 基本流程参考以下内容 http://www.coolprop.org/coolprop/wrappers/iOS/index.html 特别注意事项 github中的coolprop有许多external 库,需要手动逐一下载 当然如果网络很好也可以一次性下载完成 其次,要改名 第三,fmt使用fmtlib这个文件夹名 第四,遇到编译器不支持c++ 中定义lambd…
c++ string trim 参考https://stackoverflow.com/questions/216823/how-to-trim-a-stdstring Since c++17, some parts of the standard library were removed. Fortunately, starting with c++11, we have lambdas whi…
Cmake c complier could be not found 环境 macOS 11.6 big sur xcode 13.2 commandline tool 已经安装 ios 项目开发 报错 具体代码如下 CMake Error at CMakeLists.txt:151 (project): No CMAKE_C_COMPILER could be found. CMake Err…
macOS下fortran编译报错二 ld: library not found for 编译时提示报错如下: ld: library not found for -lSystem 解决方案: 终端中运行 export LIBRARY_PATH="$LIBRARY_PATH:/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/l…
macOS下 fortran 报错 错误情况如下图所示 Non-numeric character in statement label at (1) 经google查询发现,原来是文件的后缀问题,应该要用f90 代替f 这个错误就解决了。