摘要: 001、rocky9中编译安装R报错: conftest.c:1:10: fatal error: jni.h: No such file or directory 这个错误表明编译器在尝试编译一个C语言源文件时,无法找到头文件jni.h。jni.h是Java Native Interface(JN 阅读全文
posted @ 2024-12-10 16:50 小鲨鱼2018 阅读(303) 评论(0) 推荐(0)
摘要: 001、配置报错如下: checking whether PCRE support suffices... yes checking for curl-config... /root/anaconda3/bin/curl-config ## 用的是conda中的cure checking libcu 阅读全文
posted @ 2024-12-10 16:31 小鲨鱼2018 阅读(243) 评论(0) 推荐(0)
摘要: 000、pcre是什么? perl正则表达式函数库 ‌PCRE(Perl Compatible Regular Expressions)是一个用C语言编写的正则表达式函数库,由菲利普·海泽(Philip Hazel)编写‌。 001、问题 configure: error: PCRE2 librar 阅读全文
posted @ 2024-12-10 15:44 小鲨鱼2018 阅读(210) 评论(0) 推荐(0)
摘要: 001、 >>> eval("10 + 100") ## 对字符串数值进行计算 110 >>> eval("10 - 100") -90 >>> eval("10 * 100") 1000 >>> eval("10 / 100") 0.1 >>> eval(10 / 100) ## 参数需要是字符串 阅读全文
posted @ 2024-12-10 10:40 小鲨鱼2018 阅读(52) 评论(0) 推荐(0)
摘要: 01、基础用法,获取路径中的最后一个字段 [root@PC1 test]# echo $PWD /home/test [root@PC1 test]# basename $PWD ## 基本用法, 获取路径的最后一个字段 test [root@PC1 test]# basename /home/xx 阅读全文
posted @ 2024-12-10 09:15 小鲨鱼2018 阅读(184) 评论(0) 推荐(0)