上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 403 下一页
摘要: 001、查看系统 [root@PC1 ~]# cat /etc/redhat-release Rocky Linux release 9.4 (Blue Onyx) 002、查看是否有可用的安装包 [root@PC1 ~]# yum list | grep "openblas" ## 没有可用的op 阅读全文
posted @ 2024-12-13 11:13 小鲨鱼2018 阅读(119) 评论(0) 推荐(0)
摘要: 001、Linux中shell变量的截取 [root@PC1 test]# var1=",xxx,yyy,zzz" [root@PC1 test]# echo $var1 ,xxx,yyy,zzz [root@PC1 test]# var1=${var1:1} ## 变量的截取 [root@PC1 阅读全文
posted @ 2024-12-11 17:55 小鲨鱼2018 阅读(36) 评论(0) 推荐(0)
摘要: 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 阅读(272) 评论(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 阅读(220) 评论(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 阅读(180) 评论(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 阅读(50) 评论(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 阅读(167) 评论(0) 推荐(0)
摘要: 001、dir列出指定目录下的所有文件 [root@localhost test]# ls 1.txt 3.txt 5.txt 8.txt a.txt result.txt [root@localhost test]# dir ## 列出当前目录下的所有文件 1.txt 3.txt 5.txt 8. 阅读全文
posted @ 2024-12-09 23:22 小鲨鱼2018 阅读(115) 评论(0) 推荐(0)
摘要: 001、 [root@localhost test]# ls a.txt [root@localhost test]# cat a.txt ## 测试数据 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 阅读全文
posted @ 2024-12-09 23:07 小鲨鱼2018 阅读(13) 评论(0) 推荐(0)
摘要: 001、 conda install bioconda::dedup 002、调用测试 (base) [b20223040323@admin2 DeDup-0.12.9]$ dedup --version DeDup v0.12.9 DeDup v0.12.9 。 ref: 01、https://a 阅读全文
posted @ 2024-12-09 21:44 小鲨鱼2018 阅读(28) 评论(0) 推荐(0)
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 403 下一页