上一页 1 2 3 4 5 6 7 8 9 ··· 109 下一页
摘要: 发布到IIS服务器提示错误: 不能多个版本的同一DLL,虽是文件名不同,也是这个报错 未能加载文件或程序集“System.Runtime.CompilerServices.Unsafe, Version=4.0.4.0, Culture=neutral, PublicKeyToken=b03f5f7 阅读全文
posted @ 2024-06-20 19:19 ®Geovin Du Dream Park™ 阅读(106) 评论(0) 推荐(0) 编辑
摘要: # calculate file size in KB, MB, GB def convert_bytes(size): """ Convert bytes to KB, or MB or GB :param size :return """ for x in ['bytes', 'KB', 'MB 阅读全文
posted @ 2024-06-18 23:27 ®Geovin Du Dream Park™ 阅读(9) 评论(0) 推荐(0) 编辑
摘要: python.exe -m pip install --upgrade pip python3 -m venv venvpip install requests pip install wheel setuptools pip --upgrade pip3 install wheel setupto 阅读全文
posted @ 2024-06-16 19:22 ®Geovin Du Dream Park™ 阅读(4) 评论(0) 推荐(0) 编辑
摘要: # encoding: utf-8 # 版权所有 2024 ©涂聚文有限公司 # 许可信息查看: # 描述: # Author : geovindu,Geovin Du 涂聚文. # IDE : PyCharm 2023.1 python 311 # Datetime : 2024/6/18 17: 阅读全文
posted @ 2024-06-15 19:50 ®Geovin Du Dream Park™ 阅读(6) 评论(0) 推荐(0) 编辑
摘要: # encoding: utf-8 # 版权所有 2024 涂聚文有限公司 # 许可信息查看:pip install boost # 描述:pip install boost # pip install dlib # pip install cmake==3.25.2 # pip install d 阅读全文
posted @ 2024-06-13 19:59 ®Geovin Du Dream Park™ 阅读(10) 评论(0) 推荐(0) 编辑
摘要: pip install imageio image = imageio.imread("1.jpg") imageio.imwrite("output_image.webp", image, "WEBP") # 代码示例:使用Python的Keras库构建Autoencoder模型 from ker 阅读全文
posted @ 2024-06-10 23:52 ®Geovin Du Dream Park™ 阅读(22) 评论(0) 推荐(0) 编辑
摘要: # 假设puzzle是一个包含多个字符串的列表,每个字符串都是同一长度的,代表字母网格的一行 puzzle = [ "JGJGDDAOYD", "IDGFHSPOSA", "FGDIOSAFSC", "INTERNETSO", "FJKCOSAFSM", "DJSGAPAHDP", "HAUSTRF 阅读全文
posted @ 2024-06-09 15:13 ®Geovin Du Dream Park™ 阅读(5) 评论(0) 推荐(0) 编辑
摘要: FF=[[]] for i in range(0,10): kk = [] for k in range(0,10): if(k==0): kk.append(i) else: kk.append(k) #print(kk) FF.insert(i,kk) print(FF) # 打印列表 for 阅读全文
posted @ 2024-06-08 06:52 ®Geovin Du Dream Park™ 阅读(5) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 使用元组(Tuples或ValueTuple /// </summary> /// <param name="id"></param> /// <param name="name"></param> /// <returns></returns> public s 阅读全文
posted @ 2024-05-22 19:48 ®Geovin Du Dream Park™ 阅读(3) 评论(0) 推荐(0) 编辑
摘要: # encoding: utf-8 # 版权所有 2024 ©涂聚文有限公司 # 许可信息查看: # 描述: https://github.com/Broham/suncalcPy # Author : geovindu,Geovin Du 涂聚文. # IDE : PyCharm 2023.1 p 阅读全文
posted @ 2024-05-15 18:04 ®Geovin Du Dream Park™ 阅读(7) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 109 下一页