自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(134)
  • 收藏
  • 关注

原创 解决:selenium.common.exceptions.JavascriptException: Message: javascript error: $ is not defined

背景在使用之前的代码时,报错:Traceback (most recent call last):File “xxx”, line xx, indriver.execute_script(“$(arguments[0]).click()”,dbt)File “D:\develop\python\Python3\Python37\lib\site-packages\selenium\webdriveremote\webdriver.py”, line 405, in ......

2024-06-06 00:00:00 1284 1

原创 解决Selenium NameError: name ‘By’ is not defined

在使用Selenium进行Web自动化测试时,遇到了一个常见的错误:NameError: name 'By' is not defined。这个错误表明我们的代码中没有正确地导入By类,导致无法识别By这个名称。错误原因未导入By类:在使用Selenium时,我们需要从selenium.webdriver.common.by模块中导入By类,以便使用其提供的定位策略(如By.ID, By.XPATH等)。拼写错误或大小写问题:在Python中,大小写敏感,所以必须确保By的拼写完全正确。

2024-05-22 20:54:44 922

原创 解决:ModuleNotFoundError: No module named ‘torchvision’

背景在使用之前的代码时,报错: Traceback (most recent call last): File "xxx", line xx, in import torchvision ModuleNotFoundError: No module named 'torchvision'翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在导入torchvision......

2024-02-01 00:00:00 9644 6

原创 解决:ModuleNotFoundError: No module named ‘tiktoken’

背景在使用之前的代码时,报错: Traceback (most recent call last): File "xxx", line xx, in import tiktoken ModuleNotFoundError: No module named 'tiktoken'翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在导入tiktokenModuleNotFoundError:没有名为“tiktoken”的模块```.....

2024-01-31 18:02:44 2023

原创 解决:NameError: name ‘x’ is not defined

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in print(Employee) # 👈️ 拼写错误的变量名...NameError: name 'x' is not defined翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在中print(员工)#👈️ 拼写错误的变量名...NameError:未定义名称“x”.....

2024-01-31 17:33:13 2731

原创 解决:AttributeError: ‘str’ object has no attribute ‘capabilities’

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in driver = webdriver.Chrome() File \“xxx/webdriver.py\”, line 73, in __init__ super().__init__() File \“xxx/webdriver.py\”, line 104, in __init__ ......

2024-01-30 18:00:00 6297 2

原创 解决:ModuleNotFoundError: No module named ‘selenium’

背景在使用之前的代码时,报错: Traceback (most recent call last): File "xxx", line xx, in import selenium ModuleNotFoundError: No module named 'selenium'翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在导入seleniumModuleNotFoundError:没有名为“selenium”的模块```原因...

2024-01-30 11:23:52 5128

原创 解决:‘chromedriver’ executable needs to be in PATH

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in driver = webdriver.Chrome()'chromedriver’ executable needs to be in PATH翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在中driver=网络驱动程序。色度()“chromedriver”可执行文件需要在......

2024-01-26 19:54:46 2634 1

原创 解决:selenium.common.exceptions.WebDriverException:Message:Can not connect to the Service chromedriver

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in driver = webdriver.Chrome() File \“xxx/webdriver.py\”, line 73, in init self.service.start() File \“xxx/service.py\”, line 104, in start.......

2024-01-26 17:31:10 2320

原创 解决:ModuleNotFoundError: No module named ‘dbutils’

背景在使用之前的代码时,报错: Traceback (most recent call last): File "xxx", line xx, in import dbutils ModuleNotFoundError: No module named 'dbutils'翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在导入dbutilsModuleNotFoundError:没有名为“dbutils”的模块```原因 ......

2024-01-13 00:00:00 2236

原创 解决:ModuleNotFoundError: No module named ‘dbutils’

背景在使用之前的代码时,报错: Traceback (most recent call last): File "xxx", line xx, in import dbutils ModuleNotFoundError: No module named 'dbutils'翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在导入dbutilsModuleNotFoundError:没有名为“dbutils”的模块```原因 ......

2024-01-12 12:45:00 1728

原创 解决:ModuleNotFoundError: No module named ‘pymysql’

背景在使用之前的代码时,报错: Traceback (most recent call last): File "xxx", line xx, in import pymysql ModuleNotFoundError: No module named 'pymysql'翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在导入pymysqlModuleNotFoundError:没有名为“pymysql”的模块```原因 ......

2024-01-12 01:00:00 7451 2

原创 解决:TypeError: ‘dict_keys’ object does not support indexing

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in lst[0] = 2TypeError: 'dict_keys' object does not support indexing翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在中lst[0]=2TypeError:“dict_keys”对象不支持索引```原因经过查阅资料...

2024-01-11 18:45:00 562

原创 解决:TypeError: ‘set’ object does not support indexing

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in name_list1[0] = 2TypeError: 'set' object does not support indexing翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在中name_list1[0]=2TypeError:“set”对象不支持索引```原因......

2024-01-11 12:08:38 866

原创 解决:TypeError: ‘tuple’ object does not support item assignment

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in b[0] = 2TypeError: 'tuple' object does not support item assignment翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在中b[0]=2TypeError:“tuple”对象不支持项分配```原因经过查阅资料,发现 ...

2024-01-06 21:04:59 951

原创 解决:ModuleNotFoundError: No module named ‘bs4’

背景在使用之前的代码时,报错: Traceback (most recent call last): File "xxx", line xx, in import bs4 ModuleNotFoundError: No module named 'bs4'翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在导入bs4ModuleNotFoundError:没有名为“bs4”的模块```原因经过查阅资料,发现是这个错误通常是由于...

2024-01-06 00:30:00 4255 1

原创 解决:ERROR: Failed building wheel for xxx

背景在使用之前的代码构建环境时,报错:ERROR: Failed building wheel for xxx翻译:```错误:为xxx构建轮子失败```原因经过查阅资料,发现是这个错误产生的原因是由于没有安装python-dev导致的,需要安装python-dev,否则就会出现这样的错误。

2024-01-05 18:30:00 2308 2

原创 解决:ModuleNotFoundError: No module named ‘zhon’

背景在使用之前的代码时,报错: Traceback (most recent call last): File "xxx", line xx, in import zhon ModuleNotFoundError: No module named 'zhon'翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在导入zhonModuleNotFoundError:没有名为“zhon”的模块```原因经过查阅资料,发现......

2024-01-05 12:45:25 1559

原创 解决:TimeoutError: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in req = requests.get(url, headers=headers, proxies=proxies)TimeoutError: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败翻译:```追溯(最近一次通话):文件“xxx”,第xx行 ... ...

2024-01-03 23:45:00 4656

原创 解决:ValueError:Timeout value connect was Timeout(connect=2.0,read=2.0,total=None),but it must be an

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in req = requests.get(url, headers=headers, proxies=proxies, timeout=(3,7))ValueError: Timeout value connect was Timeout(connect=2.0, read=2.0, total=None), but it ...

2024-01-03 19:30:49 926

原创 解决:PermissionError: [Errno 13] Permission denied: ‘xxx’

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in with open(file_path, 'r') as f:PermissionError: [Errno 13] Permission denied: 'xxx' 翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在中open(file_path,'r')为f:......

2024-01-02 20:34:22 2584

原创 解决:ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in if data_1==data_2:ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在

2024-01-02 01:00:00 2621 2

原创 解决:OSError: cannot write mode RGBA as JPEG

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in captcha.save('code.png')OSError: cannot write mode RGBA as JPEG翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在中captcha.save('code.png')O错误:无法将模式RGBA写入JPEG```原因...

2023-12-21 13:00:00 1498

原创 解决:AttributeError: module ‘scipy.misc’ has no attribute ‘imresize’

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in misc.imresize(cropped_temp, (image_size, image_size), interp='bilinear')AttributeError: module 'scipy.misc' has no attribute 'imresize'翻译:```追溯(最近一次通话):......

2023-12-21 00:06:17 1131

原创 解决:AttributeError: module ‘scipy.misc’ has no attribute ‘imread’

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in misc.imread(input_path)AttributeError: module 'scipy.misc' has no attribute 'imread'翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在中杂项imread(输入路径)AttributeError......

2023-12-18 13:00:00 2488

原创 解决:AttributeError: module ‘scipy.misc’ has no attribute ‘imsave’

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in misc.imsave(output_path, scaled_temp)AttributeError: module 'scipy.misc' has no attribute 'imsave'翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在中misc.imsave ... ...

2023-12-18 00:00:00 1825

原创 解决:TypeError: write() argument must be str, not tuple

背景在使用之前的代码时,报错:Traceback (most recent call last): File "E:/Test/test.py", line 14, in file.write(lines)TypeError: write() argument must be str, not tuple翻译:```追溯(最近一次通话):文件“E:/Test/Test.py”,第14行,在中file.write(lines)... ...

2023-12-16 22:28:42 1971

原创 解决:AttributeError: ‘dict’ object has no attribute ‘has_key’

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in print(dict.has_key("name"))AttributeError: 'dict' object has no attribute 'has_key翻译:```追溯(最近一次通话):文件“xxx”,第xx行,在中print(dict.has_key("name"))... ...

2023-12-16 00:15:00 2600

原创 解决:fatal:unable to access‘https://github.com/xx/xx.git/‘:OpenSSL SSL_read:Connection was reset errno

背景在使用之前的代码时,报错:fatal: unable to access 'https://github.com/xxx/xxx.git/': OpenSSL SSL_read: Connection was reset, errno 10054翻译:```致命:无法访问'https://github.com/xxx/xxx.git/':OpenSSL SSL_read:连接已重置,错误号10054```原因经过查阅资料,发现这个错误产生的原因是git在拉取或者提交项目时......

2023-12-15 19:00:00 1441

原创 解决:InsecureRequestWarning:Unverified HTTPS request is being made to host ‘xx.cn’. Adding ......

背景在使用之前的代码时,报错:D:/Anaconda_soft/envs/pytorch/lib/site-packages/urllib3/connectionpool.py:1043: InsecureRequestWarning: Unverified HTTPS request is being made to host 'www.dytt89.com'. Adding certificate verification is strongly advised. See: ......

2023-12-15 00:15:00 1887

原创 解决:requests.exceptions.ProxyError:HTTPSConnectionPool(host=‘xxx.com’,port=443):Max retries exceeded

背景在使用之前的代码时,报错:requests.exceptions.ProxyError: HTTPSConnectionPool(host='www.xxxx.com', port=443): Max retries exceeded with url: / (Caused by ProxyError('Cannot connect to proxy.', timeout('_ssl.c:1108: The handshake operation timed out')))... ...

2023-12-14 12:45:00 6112 1

原创 解决:ImportError: cannot import name ‘PyKeyboard’ from ‘pykeyboard’

背景在使用之前的代码时,报错:Traceback (most recent call last): File "xxx", line xx, in from pykeyboard import PyKeyboard ImportError: cannot import name 'PyKeyboard' from 'pykeyboard' (D:/python/xxx/__init__.py)翻译:```追溯(最近一次通话):文件“xxx”,第xx行 ......

2023-12-14 00:30:00 1553

原创 解决:ModuleNotFoundError: No module named ‘windows’

背景在使用之前的代码时,报错:Traceback (most recent call last): File "E:/Test/test.py", line 14, in from pymouse import PyMouse, PyMouseEventModuleNotFoundError: No module named 'windows'翻译:```追溯(最近一次通话):文件“E:/Test/Test.py”,第14行,在中... ...

2023-12-13 19:55:35 1921

原创 解决:WARNING: Ignoring invalid distribution -ip (d:\python37\lib\site-packages)

背景为了使用之前的代码,搭建环境时,报错:WARNING: Ignoring invalid distribution -ip (d:\python37\lib\site-packages)翻译:```警告:忽略无效的分发-ip(d:\python37\lib\site软件包)```原因经过查阅资料,发现是这个错误产生的原因是之前安装插件失败或者中途退出,导致插件安装出现异常导致的。然后就会产生这样的错误提示。

2023-12-13 01:00:00 1864

原创 解决:TypeError: write() argument must be str, not Tag

背景在使用之前的代码时,报错:Traceback (most recent call last): File "E:/Test/test.py", line 14, in file.write(tag_str)TypeError: write() argument must be str, not Tag翻译:```追溯(最近一次通话):文件“E:/Test/Test.py”,第14行,在中file.write(tag_str)......

2023-12-12 12:45:00 1364

原创 解决:TypeError: Type ‘list’ cannot be serialized

背景在使用之前的代码时,报错:Traceback (most recent call last): File "E:/Test/test.py", line 14, in d = etree.tostring(divs) File "src/lxml/etree.py", line 3443, in lxml.etree.tostringTypeError: Type 'list' cannot be serialized.翻译:```追溯(最近一次调用)...

2023-12-12 09:30:00 1298

原创 解决SyntaxError:(unicode error)‘unicodeescape’ codec can’t decode bytes in position x:truncaed escape

背景在使用之前的代码时,报错:SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 378-379: truncated \UXXXXXXXX escape翻译:```SyntaxError:(unicode错误)“unicodeescape”编解码器无法解码位置378-379中的字节:截断\UXXXXXXXX转义```原因经过查阅资料,发现SyntaxError这个错误通常 ...

2023-12-11 19:00:00 7394

原创 解决:GuessedAtParserWarning:No parser was explicitly specified,so I‘m using the best available HTML...

背景在使用之前的代码时,报错:GuessedAtParserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("html.parser"). This usually isn't a problem, but if you run this code on another system, or in a different ......

2023-12-11 12:54:44 1387

原创 解决:ModuleNotFoundError: No module named ‘docx‘

报错翻译主要报错信息内容翻译如下所示: Traceback (most recent call last): File "d:/develop/python/workspace/CreatorTools/读取和写入world.py", line 2, in import docxModuleNotFoundError: No module named 'docx'翻译:回溯(最近一次调用最后一次):文件“d:.... ...

2023-12-10 23:39:23 2439

原创 解决:Message: unknown error: failed to change window state to ‘normal‘, current state is ‘maximized‘

背景在使用之前的代码时,报错: Traceback (most recent call last): File "xxx", line xx, in driver.maximize_window() # 窗口最大化 selenium.common.exceptions.WebDriverException: Message: unknown error: failed to change window state to 'normal', ... ...

2023-12-09 10:00:00 707

python-3.12.0-embed-win32.zip

python-3.12.0-embed-win32.zip,下载于官网,供有需要的朋友下载

2023-11-16

Python 3.12.0 macOS pkg 的zip安装包

Python 3.12.0 macOS pkg 的zip安装包 适用于macOS 10.9 及更高版本的安装程序,下载于官网,供有需要的朋友下载

2023-11-16

Python 3.12.0 Windows installer (64 -bit)的zip安装包

Python 3.12.0 Windows installer (ARM64)安装包 适用于windows x64的安装程序,下载于官网,供有需要的朋友下载

2023-11-16

Python 3.12.0 Windows installer (ARM64)安装包

Python 3.12.0 Windows installer (ARM64)安装包 适用于windows x64的安装程序,下载于官网,供有需要的朋友下载

2023-11-16

Python 3.12.0 Windows installer (32 -bit)安装包

Python 3.12.0 Windows installer (32 -bit)安装包 适用于windows x32的安装程序,下载于官网,供有需要的朋友下载

2023-11-16

Java邮件发送依赖的jar包

Java邮件发送依赖的jar包,包括commons-email-1.5.jar和javax.mail.jar,供有需要的朋友下载。

2023-04-22

jdk-20-macos-x64-bin.dmg安装包

jdk-20_macos-x64_bin.dmg安装包 适用于macos x64的安装程序,下载于官网,供有需要的朋友下载

2023-04-21

jdk-20-macos-aarch64-bin.dmg安装包

jdk-20_macos-aarch64_bin.dmg安装包 适用于macos x64的安装程序,下载于官网,供有需要的朋友下载

2023-04-21

openjdk-11.0.2-linux-x64-bin.tar.gz的zip压缩包

openjdk-11.0.2_linux-x64_bin.tar.gz的zip压缩包 适用于Linux x64的安装程序,下载于官网,供有需要的朋友下载

2023-04-21

openjdk-20.0.1-macos-x64-bin.tar.gz安装包

openjdk-20.0.1_macos-x64_bin.tar.gz安装包 适用于macos x64的安装程序,下载于官网,供有需要的朋友下载

2023-04-21

openjdk-20.0.1-windows-x64-bin的zip压缩包

openjdk-20.0.1_windows-x64_bin的zip压缩包 适用于Windows x64的安装程序,下载于官网,供有需要的朋友下载

2023-04-21

openjdk-20+36-linux-x64-bin.tar.gz的zip压缩包

openjdk-20+36_linux-x64_bin.tar.gz的zip压缩包 适用于Linux x64的安装程序,下载于官网,供有需要的朋友下载

2023-04-21

openjdk-20.0.1-macos-aarch64-bin.tar.gz

openjdk-20.0.1_macos-aarch64安装包 适用于macos x64的安装程序,下载于官网,供有需要的朋友下载

2023-04-21

openjdk-20.0.1-linux-aarch64-bin.tar.gz

openjdk-20.0.1_linux-aarch64安装包 适用于Linux x64的安装程序,下载于官网,供有需要的朋友下载

2023-04-21

python-3.11.2-arm64.exe的zip压缩包

python-3.11.2-arm64.exe的zip压缩包 适用于Windows x64的安装程序,下载于官网,供有需要的朋友下载

2023-04-20

python-3.6.8-amd64.exe的zip压缩包

python-3.6.8-amd64.exe的zip压缩包 适用于Windows x64的安装程序,下载于官网,供有需要的朋友下载

2023-04-20

python-3.10.10-amd64.exe的zip压缩包

python-3.10.10-amd64.exe的zip压缩包 适用于Windows x64的安装程序,下载于官网,供有需要的朋友下载

2023-04-20

python-3.7.9-amd64.exe的zip压缩包

python-3.7.9-amd64.exe的zip压缩包 适用于Windows x64的安装程序,下载于官网,供有需要的

2023-04-20

python-3.9.13-amd64.exe的zip压缩包

python-3.9.13-amd64.exe的zip压缩包 适用于Windows x64的安装程序,下载于官网,供有需要

2023-04-20

python-3.8.10-amd64.exe的zip压缩包

python-3.8.10-amd64.exe的zip压缩包 适用于Windows x64的安装程序,下载于官网,供有需要

2023-04-20

chromedriver 121 windows x64安装包

chromedriver 121 windows x64安装包 适用于windows x64的安装程序,下载于官网,供有需要的朋友下载。 chromedriver 的安装配置和使用及遇到的部分问题的解决, 可参考:https://blog.csdn.net/nings666/article/details/134314452

2024-01-31

chromedriver 119 windows x64安装包

chromedriver 119 windows x64安装包 适用于windows x64的安装程序,下载于官网,供有需要的朋友下载。 chromedriver 的安装配置和使用及遇到的部分问题的解决, 可参考:https://blog.csdn.net/nings666/article/details/134314452

2024-01-30

chromedriver 118 windows x64安装包

chromedriver 118 windows x64安装包 适用于windows x64的安装程序,下载于官网,供有需要的朋友下载。 chromedriver 的安装配置和使用及遇到的部分问题的解决, 可参考:https://blog.csdn.net/nings666/article/details/134314452

2024-01-30

chromedriver 117 windows x64安装包

chromedriver 117安装包 适用于windows x64的安装程序,下载于官网,供有需要的朋友下载。 chromedriver 的安装配置和使用及遇到的部分问题的解决, 可参考:https://blog.csdn.net/nings666/article/details/134314452

2024-01-30

chromedriver 116 windows x64安装包

chromedriver 116安装包 适用于windows x64的安装程序,下载于官网,供有需要的朋友下载。 chromedriver 的安装配置和使用及遇到的部分问题的解决, 可参考:https://blog.csdn.net/nings666/article/details/134314452

2024-01-30

chromedriver 120.0.6099.109 windows x64的安装包

chromedriver 120.0.6099.109安装包 适用于windows x64的安装程序,下载于官网,供有需要的朋友下载。 chromedriver 的安装配置和使用及遇到的部分问题的解决, 可参考:https://blog.csdn.net/nings666/article/details/134314452

2023-12-21

dlib-19.17.99-cp37-cp37m-win-amd64的压缩包

dlib-19.17.99-cp37-cp37m-win_amd64的压缩包,适用于windows x64,Python3.7的安装程序,下载于官网,供有需要的朋友下载

2023-12-06

MySQL-python-1.2.5-cp27-none-win-amd64.whl的zip安装包

MySQL_python-1.2.5-cp27-none-win_amd64.whl的zip安装包,, 适用于windows x64,Python2.7和Mysql的安装程序,下载于官网,供有需要的朋友下载

2023-12-04

MySQL-python-1.2.5-cp27-none-win32.whl的zip安装包

MySQL_python-1.2.5-cp27-none-win32.whl的zip安装包, 适用于windows x86,Python2.7和Mysql的安装程序,下载于官网,供有需要的朋友下载

2023-12-04

python-2.7.18.amd64.msi的zip安装包

python-2.7.18.amd64.msi的zip安装包, 适用于windows x64的安装程序,下载于官网,供有需要的朋友下载

2023-12-04

dlib-19.17.99-cp37-cp37m-win-amd64.whl的zip安装包

dlib-19.17.99-cp37-cp37m-win_amd64.whl的zip安装包, 适用于windows x64的安装程序,下载于官网,供有需要的朋友下载

2023-12-04

python-2.7.18-macosx10.9.pkg的zip安装包

python-2.7.18-macosx10.9.pkg的zip安装包, 适用于MacOS x64的安装程序,下载于官网,供有需要的朋友下载

2023-12-04

jdk-21-linux-aarch64-bin.rpm的zip安装包

jdk-21_linux-aarch64_bin.rpm的zip安装包, 适用于linux x64的安装程序,下载于官网,供有需要的朋友下载

2023-11-16

jdk-21-windows-x64-bin.msi安装包

jdk-21_windows-x64_bin.msi安装包 适用于windows x64的安装程序,下载于官网,供有需要的朋友下载

2023-11-16

jdk-21-windows-x64-bin.exe安装包

jdk-21_windows-x64_bin.exe安装包, 适用于windows x64的安装程序,下载于官网,供有需要的朋友下载

2023-11-16

jdk-21-macos-x64-bin.dmg安装包

jdk-21_macos-x64_bin.dmg安装包, 适用于macOS x64的安装程序,下载于官网,供有需要的朋友下载

2023-11-16

jdk-21-macos-aarch64-bin.dmg安装包

jdk-21_macos-aarch64_bin.dmg安装包, 适用于macOS x64的安装程序,下载于官网,供有需要的朋友下载

2023-11-16

jdk-21-linux-x64-bin.tar.gz安装包

jdk-21_linux-x64_bin.tar.gz安装包, 适用于linux x64的安装程序,下载于官网,供有需要的朋友下载

2023-11-16

jdk-21-linux-aarch64-bin.tar.gz安装包

jdk-21_linux-aarch64_bin.tar.gz安装包, 适用于linux x64的安装程序,下载于官网,供有需要的朋友下载

2023-11-16

python-3.12.0-embed-arm64.zip

python-3.12.0-embed-arm64.zip,下载于官网,供有需要的朋友下载

2023-11-16

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除