摘要: 001、configure: error: libcurl library not found 002、解决方法 [root@pc1 test01]# yum -y install libcurl-devel 。 阅读全文
posted @ 2023-08-29 21:15 小鲨鱼2018 阅读(726) 评论(0) 推荐(0)
摘要: 001、configure: error: liblzma development files not found 002、解决方法 [root@pc1 test01]# yum -y install xz-devel 。 阅读全文
posted @ 2023-08-29 21:10 小鲨鱼2018 阅读(387) 评论(0) 推荐(0)
摘要: 001、configure: error: libbzip2 development files not found 002、解决方法 [root@pc1 test01]# yum -y install bzip2-devel 。 阅读全文
posted @ 2023-08-29 21:07 小鲨鱼2018 阅读(282) 评论(0) 推荐(0)
摘要: 001、configure: error: zlib development files not found 002、解决方法: [root@pc1 test01]# yum -y install zlib-devel 。 阅读全文
posted @ 2023-08-29 21:04 小鲨鱼2018 阅读(167) 评论(0) 推荐(0)
摘要: 001、系统信息、问题 [root@pc1 software]# cat /etc/redhat-release ## 系统信息 CentOS Linux release 7.6.1810 (Core) [root@pc1 software]# pip install pysam # bash: p 阅读全文
posted @ 2023-08-29 21:01 小鲨鱼2018 阅读(507) 评论(0) 推荐(0)
摘要: 兔子一代生3对,然后每隔一代兔子才有繁殖能力,问最初有1对兔子,问5代后一共有多少只兔子? 001、直接实现 >>> list1 = [1] * 5 >>> list1 [1, 1, 1, 1, 1] >>> for i in range(2,5): ... list1[i] = list1[i - 阅读全文
posted @ 2023-08-29 20:17 小鲨鱼2018 阅读(157) 评论(0) 推荐(0)