ERROR: Ignored the following versions that require a different python version: 1.21.2 Requires-Python >=3.7,<3.11; 1.21.3 Requires-Python >=3.7,<3.11; 1.21.4 Requires-Python >=3.7,<3.11; 1.21.5 Requires-Python >=3.7,<3.11; 1.21.6 Requires-Python >=3.7,<3.11; 1.26.0 Requires-Python >=3.9,<3.13; 1.26.1 Requires-Python >=3.9,<3.13 ERROR: Could not find a version that satisfies the requirement torchaudio==2.2.2 (from versions: 2.6.0, 2.7.0, 2.7.1, 2.8.0) ERROR: No matching distribution found for torchaudio==2.2.2

时间: 2025-09-07 10:21:16 AIGC 浏览: 16
<think> 我们正在解决安装 torchaudio 2.2.2 时出现的版本不匹配问题。根据引用[3]中的信息,PyTorch 2.2.2 对应的 torchvision 版本是 0.17.2,但没有直接提到 torchaudio 的版本。然而,通常 PyTorch、torchvision 和 torchaudio 的版本是同步发布的,因此我们可以推断 torchaudio 2.2.2 应该与 PyTorch 2.2.2 和 torchvision 0.17.2 匹配。 引用[2]中提供了一个示例命令,它指定了PyTorch、torchvision和torchaudio的版本,并且还指定了CUDA版本。因此,我们可以尝试类似的命令来安装 torchaudio 2.2.2。 但是,请注意,torchaudio的版本号通常与PyTorch的主版本号保持一致。例如,PyTorch 2.2.x 对应 torchaudio 2.2.x。因此,安装 torchaudio 2.2.2 时,我们需要确保同时安装兼容的PyTorch版本(即2.2.2)和torchvision版本(0.17.2)。 此外,我们还需要考虑Python版本和CUDA版本的兼容性。引用[3]中的表格显示,PyTorch 2.2.2支持的Python版本是3.8-3.10,CUDA版本是11.8。 因此,解决步骤: 1. 确认当前Python版本在3.8到3.10之间。如果不在,建议使用conda创建一个新环境并指定Python版本(例如3.9)。 2. 使用conda或pip安装兼容的PyTorch、torchvision和torchaudio版本。 使用conda安装的命令可能如下(参考引用[2]的格式): ``` conda install pytorch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 -c pytorch ``` 但是,请注意,引用[3]中给出PyTorch 2.2.2的安装命令是: ``` pip install torch==2.2.2 torchvision==0.17.2 ``` 因此,我们也可以使用pip安装(注意,torchaudio也需要单独指定): ``` pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 ``` 3. 如果使用CUDA,确保CUDA版本为11.8。如果不使用CUDA,可以安装CPU版本。 对于CPU版本,可以使用: ``` pip install torch==2.2.2+cpu torchvision==0.17.2+cpu torchaudio==2.2.2+cpu -f https://download.pytorch.org/whl/torch_stable.html ``` 4. 如果遇到问题,可以尝试先安装PyTorch,再安装torchaudio,并确保版本匹配。 注意:有时由于平台(如Windows、Linux)不同,安装命令可能略有差异。如果上述命令不行,可以到PyTorch官网的以往版本页面(https://pytorch.org/get-started/previous-versions/ )查找对应版本的安装命令。 根据上述分析,我们给出具体步骤: 步骤1:检查Python版本 在命令行中运行: ```bash python --version ``` 确保Python版本在3.8到3.10之间。 步骤2:创建并激活虚拟环境(可选,但推荐) 使用conda: ```bash conda create -n torch_env python=3.9 conda activate torch_env ``` 或者使用venv(如果你不使用conda): ```bash python -m venv torch_env source torch_env/bin/activate # Linux torch_env\Scripts\activate # Windows ``` 步骤3:安装匹配的版本 根据你的包管理器和CUDA版本选择以下命令之一: 选项A:使用conda安装(conda可能无法精确指定所有版本,但可以尝试) ```bash conda install pytorch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 -c pytorch ``` 选项B:使用pip安装(推荐,因为版本指定更精确) 对于CUDA 11.8: ```bash pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 --index-url https://download.pytorch.org/whl/cu118 ``` 或者使用以下命令(与上面等效): ```bash pip install torch==2.2.2+cu118 torchvision==0.17.2+cu118 torchaudio==2.2.2+cu118 -f https://download.pytorch.org/whl/torch_stable.html ``` 对于CPU版本: ```bash pip install torch==2.2.2+cpu torchvision==0.17.2+cpu torchaudio==2.2.2+cpu -f https://download.pytorch.org/whl/torch_stable.html ``` 步骤4:验证安装 启动Python解释器,运行: ```python import torch import torchvision import torchaudio print(torch.__version__) print(torchvision.__version__) print(torchaudio.__version__) ``` 预期输出: ``` 2.2.2 0.17.2 2.2.2 ``` 如果按照以上步骤仍然遇到问题,可能是由于依赖冲突。建议在一个全新的虚拟环境中安装。 相关问题: 1. 如何检查CUDA版本是否与PyTorch兼容? 2. 安装PyTorch时如何选择正确的版本? 3. 如何解决安装PyTorch时的依赖冲突问题? </think> ### 解决 torchaudio 2.2.2 安装的版本兼容问题 要解决安装 torchaudio 2.2.2 时的版本匹配问题,关键是根据 PyTorch 的版本兼容矩阵进行精确配对。以下是完整解决方案: #### 1. **确认版本依赖关系** 根据 PyTorch 官方兼容表[^3][^4]: - **torchaudio 2.2.2** 必须与以下版本配对: - PyTorch:2.2.2 - Python:3.8-3.10 - CUDA:11.8(如使用GPU) $$ \text{兼容公式:} \quad \text{torchaudio}_{2.2.2} \iff \text{PyTorch}_{2.2.2} \iff \text{Python}_{3.8-3.10} $$ #### 2. **分步安装命令** 根据您的环境选择对应命令: ##### ✅ 标准安装(CPU/GPU通用) ```bash pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 ``` ##### ⚡ GPU用户(CUDA 11.8) ```bash pip install torch==2.2.2+cu118 torchvision==0.17.2+cu118 torchaudio==2.2.2 \ -f https://download.pytorch.org/whl/torch_stable.html ``` ##### 💻 纯CPU版本 ```bash pip install torch==2.2.2+cpu torchvision==0.17.2+cpu torchaudio==2.2.2 \ -f https://download.pytorch.org/whl/torch_stable.html ``` #### 3. **验证安装** ```python import torch, torchaudio print(f"PyTorch: {torch.__version__}") # 应输出 2.2.2 print(f"TorchAudio: {torchaudio.__version__}") # 应输出 2.2.2 ``` #### 4. **常见问题排查** - **Python 版本不符**:通过 Conda 创建兼容环境: ```bash conda create -n torch_env python=3.10 conda activate torch_env ``` - **残留旧版本**:先彻底卸载旧包: ```bash pip uninstall -y torch torchvision torchaudio ``` - **网络超时**:使用清华镜像源加速: ```bash pip install -i https://pypi.tuna.tsinghua.edu.cn/simple [上述安装命令] ``` > 关键提示:PyTorch 三件套(torch/torchvision/torchaudio)必须**主版本完全一致**,次版本偏差可能导致二进制接口不兼容[^3][^4]。 相关问题: 1. 如何查询 PyTorch 历史版本的官方兼容表? 2. 安装 PyTorch 时如何选择正确的 CUDA 版本? 3. torchaudio 有哪些常用的音频处理函数?
阅读全文

相关推荐

.ERROR: Ignored the following versions that require a different python version: 0.10.0 Requires-Python >=3.8.1,<4.0; 0.10.1 Requires-Python >=3.8.1,<4.0; 0.10.10 Requires-Python >=3.8.1,<4.0; 0.10.11 Requires-Python >=3.8.1,<4.0; 0.10.11.post1 Requires-Python >=3.8.1,<4.0; 0.10.12 Requires-Python >=3.8.1,<4.0; 0.10.13 Requires-Python >=3.8.1,<4.0; 0.10.14 Requires-Python >=3.8.1,<4.0; 0.10.14.post1 Requires-Python >=3.8.1,<4.0; 0.10.15 Requires-Python >=3.8.1,<4.0; 0.10.16 Requires-Python >=3.8.1,<4.0; 0.10.16.post1 Requires-Python >=3.8.1,<4.0; 0.10.17 Requires-Python >=3.8.1,<4.0; 0.10.18 Requires-Python >=3.8.1,<4.0; 0.10.18.post1 Requires-Python >=3.8.1,<4.0; 0.10.19 Requires-Python >=3.8.1,<4.0; 0.10.2 Requires-Python >=3.8.1,<4.0; 0.10.20 Requires-Python >=3.8.1,<4.0; 0.10.20.post1 Requires-Python >=3.8.1,<4.0; 0.10.20.post2 Requires-Python >=3.8.1,<4.0; 0.10.20.post3 Requires-Python <4.0,>=3.8.1; 0.10.21 Requires-Python <4.0,>=3.8.1; 0.10.21.post1 Requires-Python <4.0,>=3.8.1; 0.10.22 Requires-Python <4.0,>=3.8.1; 0.10.23 Requires-Python <4.0,>=3.8.1; 0.10.23.post1 Requires-Python <4.0,>=3.8.1; 0.10.24 Requires-Python <4.0,>=3.8.1; 0.10.24.post1 Requires-Python <4.0,>=3.8.1; 0.10.24a1 Requires-Python <4.0,>=3.8.1; 0.10.25 Requires-Python <4.0,>=3.8.1; 0.10.25.post1 Requires-Python <4.0,>=3.8.1; 0.10.25.post2 Requires-Python <4.0,>=3.8.1; 0.10.25.post3 Requires-Python <4.0,>=3.8.1; 0.10.25a1 Requires-Python <4.0,>=3.8.1; 0.10.26 Requires-Python <4.0,>=3.8.1; 0.10.27 Requires-Python <4.0,>=3.8.1; 0.10.28 Requires-Python <4.0,>=3.8.1; 0.10.29 Requires-Python <4.0,>=3.8.1; 0.10.3 Requires-Python >=3.8.1,<4.0; 0.10.30 Requires-Python <4.0,>=3.8.1; 0.10.31 Requires-Python <4.0,>=3.8.1; 0.10.32 Requires-Python <4.0,>=3.8.1; 0.10.33 Requires-Python <4.0,>=3.8.1; 0.10.34 Requires-Python <4.0,>=3.8.1; 0.10.35 Requires-Python <4.0,>=3.8.1; 0.10.35.post1 Requires-Python <4.0,>=3.8.1; 0.10.36 Requires-Python <4.0,>=3.8.1; 0.10.37 Requires-Python <4.0,>=3.8.1; 0.10.37.post1 Requires-Python <4.0,>=3.8.1; 0.10.38 Requires-Python <4.0,>=3.8.1; 0.10.38.post1 Requires-Python <4.0,>=3.8.1; 0.10.38.post2 Requires-Python <4.0,>=3.8.1; 0.10.39 Requires-Python <4.0,>=3.8.1; 0.10.39.post1 Requires-Python <4.0,>=3.8.1; 0.10.40 Requires-Python <4.0,>=3.8.1; 0.10.41 Requires-Python <4.0,>=3.8.1; 0.10.42 Requires-Python <4.0,>=3.8.1; 0.10.43 Requires-Python <4.0,>=3.8.1; 0.10.43.post1 Requires-Python <4.0,>=3.8.1; 0.10.44 Requires-Python <4.0,>=3.8.1; 0.10.45 Requires-Python <4.0,>=3.8.1; 0.10.46 Requires-Python <4.0,>=3.8.1; 0.10.47 Requires-Python <4.0,>=3.8.1; 0.10.48 Requires-Python <4.0,>=3.8.1; 0.10.48.post1 Requires-Python <4.0,>=3.8.1; 0.10.49 Requires-Python <4.0,>=3.8.1; 0.10.5 Requires-Python >=3.8.1,<4.0; 0.10.50 Requires-Python <4.0,>=3.8.1; 0.10.50.post1 Requires-Python <4.0,>=3.8.1; 0.10.51 Requires-Python <4.0,>=3.8.1; 0.10.52 Requires-Python <4.0,>=3.8.1; 0.10.52.post1 Requires-Python <4.0,>=3.8.1; 0.10.52.post2 Requires-Python <4.0,>=3.8.1; 0.10.53 Requires-Python <4.0,>=3.8.1; 0.10.53.post1 Requires-Python <4.0,>=3.8.1; 0.10.54 Requires-Python <4.0,>=3.8.1; 0.10.54.post1 Requires-Python <4.0,>=3.8.1; 0.10.55 Requires-Python <4.0,>=3.8.1; 0.10.56 Requires-Python <4.0,>=3.8.1; 0.10.57 Requires-Python <4.0,>=3.8.1; 0.10.58 Requires-Python <4.0,>=3.8.1; 0.10.59 Requires-Python <4.0,>=3.8.1; 0.10.59a1 Requires-Python <4.0,>=3.8.1; 0.10.59a2 Requires-Python <4.0,>=3.8.1; 0.10.5a1 Requires-Python >=3.8.1,<4.0; 0.10.5a10 Requires-Python >=3.8.1,<4.0; 0.10.5a2 Requires-Python >=3.8.1,<4.0; 0.10.5a3 Requires-Python >=3.8.1,<4.0; 0.10.5a4 Requires-Python >=3.8.1,<4.0; 0.10.5a5 Requires-Python >=3.8.1,<4.0; 0.10.5a6 Requires-Python >=3.8.1,<4.0; 0.10.5a7 Requires-Python >=3.8.1,<4.0; 0.10.5a8 Requires-Python >=3.8.1,<4.0; 0.10.5a9 Requires-Python >=3.8.1,<4.0; 0.10.6 Requires-Python >=3.8.1,<4.0; 0.10.6.post1 Requires-Python >=3.8.1,<4.0; 0.10.60 Requires-Python <4.0,>=3.8.1; 0.10.61 Requires-Python <4.0,>=3.8.1; 0.10.62 Requires-Python <4.0,>=3.8.1; 0.10.63 Requires-Python <4.0,>=3.8.1; 0.10.64 Requires-Python <4.0,>=3.8.1; 0.10.65 Requires-Python <4.0,>=3.8.1; 0.10.66 Requires-Python <4.0,>=3.8.1; 0.10.67 Requires-Python <4.0,>=3.8.1; 0.10.68 Requires-Python <4.0,>=3.8.1; 0.10.68.post1 Requires-Python <4.0,>=3.8.1; 0.10.7 Requires-Python >=3.8.1,<4.0; 0.10.8 Requires-Python >=3.8.1,<4.0; 0.10.8.post1 Requires-Python >=3.8.1,<4.0; 0.10.9 Requires-Python >=3.8.1,<4.0; 0.11.0 Requires-Python <4.0,>=3.8.1; 0.11.0 Requires-Python >=3.7.1; 0.11.0.post1 Requires-Python <4.0,>=3.8.1; 0.11.1 Requires-Python <4.0,>=3.8.1; 0.11.1 Requires-Python >=3.7.1; 0.11.10 Requires-Python <4.0,>=3.8.1; 0.11.11 Requires-Python <4.0,>=3.8.1; 0.11.12 Requires-Python <4.0,>=3.8.1; 0.11.13 Requires-Python <4.0,>=3.8.1; 0.11.13.post1 Requires-Python <4.0,>=3.8.1; 0.11.14 Requires-Python <4.0,>=3.8.1; 0.11.15 Requires-Python <4.0,>=3.8.1; 0.11.16 Requires-Python <4.0,>=3.8.1; 0.11.17 Requires-Python <4.0,>=3.8.1; 0.11.18 Requires-Python <4.0,>=3.8.1; 0.11.19 Requires-Python <4.0,>=3.8.1; 0.11.2 Requires-Python <4.0,>=3.8.1; 0.11.2 Requires-Python >=3.7.1; 0.11.20 Requires-Python <4.0,>=3.8.1; 0.11.21 Requires-Python <4.0,>=3.8.1; 0.11.22 Requires-Python <4.0,>=3.8.1; 0.11.23 Requires-Python <4.0,>=3.8.1; 0.11.3 Requires-Python <4.0,>=3.8.1; 0.11.3 Requires-Python >=3.7.1; 0.11.4 Requires-Python <4.0,>=3.8.1; 0.11.4 Requires-Python >=3.7.1; 0.11.5 Requires-Python <4.0,>=3.8.1; 0.11.5 Requires-Python >=3.7.1; 0.11.6 Requires-Python <4.0,>=3.8.1; 0.11.6 Requires-Python >=3.7.1; 0.11.7 Requires-Python <4.0,>=3.8.1; 0.11.8 Requires-Python <4.0,>=3.8.1; 0.11.9 Requires-Python <4.0,>=3.8.1; 0.12.0 Requires-Python <4.0,>=3.9; 0.12.0 Requires-Python >=3.7.1; 0.12.1 Requires-Python <4.0,>=3.9; 0.12.10 Requires-Python <4.0,>=3.9; 0.12.10.post1 Requires-Python <4.0,>=3.9; 0.12.11 Requires-Python <4.0,>=3.9; 0.12.12 Requires-Python <4.0,>=3.9; 0.12.13 Requires-Python <4.0,>=3.9; 0.12.14 Requires-Python <4.0,>=3.9; 0.12.15 Requires-Python <4.0,>=3.9; 0.12.16 Requires-Python <4.0,>=3.9; 0.12.16.post1 Requires-Python <4.0,>=3.9; 0.12.17 Requires-Python <4.0,>=3.9; 0.12.18 Requires-Python <4.0,>=3.9; 0.12.19 Requires-Python <4.0,>=3.9; 0.12.2 Requires-Python <4.0,>=3.9; 0.12.20 Requires-Python <4.0,>=3.9; 0.12.21 Requires-Python <4.0,>=3.9; 0.12.22 Requires-Python <4.0,>=3.9; 0.12.23 Requires-Python <4.0,>=3.9; 0.12.23.post1 Requires-Python <4.0,>=3.9; 0.12.23.post2 Requires-Python <4.0,>=3.9; 0.12.24 Requires-Python <4.0,>=3.9; 0.12.24.post1 Requires-Python <4.0,>=3.9; 0.12.25 Requires-Python <4.0,>=3.9; 0.12.26 Requires-Python <4.0,>=3.9; 0.12.27 Requires-Python <4.0,>=3.9; 0.12.27a1 Requires-Python <4.0,>=3.9; 0.12.27a2 Requires-Python <4.0,>=3.9; 0.12.27a3 Requires-Python <4.0,>=3.9; 0.12.28 Requires-Python <4.0,>=3.9; 0.12.29 Requires-Python <4.0,>=3.9; 0.12.3 Requires-Python <4.0,>=3.9; 0.12.30 Requires-Python <4.0,>=3.9; 0.12.31 Requires-Python <4.0,>=3.9; 0.12.32 Requires-Python <4.0,>=3.9; 0.12.33 Requires-Python <4.0,>=3.9; 0.12.33.post1 Requires-Python <4.0,>=3.9; 0.12.34 Requires-Python <4.0,>=3.9; 0.12.34.post1 Requires-Python <4.0,>=3.9; 0.12.34a1 Requires-Python <4.0,>=3.9; 0.12.34a2 Requires-Python <4.0,>=3.9; 0.12.34a3 Requires-Python <4.0,>=3.9; 0.12.34a4 Requires-Python <4.0,>=3.9; 0.12.34a5 Requires-Python <4.0,>=3.9; 0.12.35 Requires-Python <4.0,>=3.9; 0.12.36 Requires-Python <4.0,>=3.9; 0.12.37 Requires-Python <4.0,>=3.9; 0.12.38 Requires-Python <4.0,>=3.9; 0.12.39 Requires-Python <4.0,>=3.9; 0.12.4 Requires-Python <4.0,>=3.9; 0.12.40 Requires-Python <4.0,>=3.9; 0.12.41 Requires-Python <4.0,>=3.9; 0.12.42 Requires-Python <4.0,>=3.9; 0.12.43 Requires-Python <4.0,>=3.9; 0.12.44 Requires-Python <4.0,>=3.9; 0.12.45 Requires-Python <4.0,>=3.9; 0.12.46 Requires-Python <4.0,>=3.9; 0.12.47 Requires-Python <4.0,>=3.9; 0.12.48 Requires-Python <4.0,>=3.9; 0.12.49 Requires-Python <4.0,>=3.9; 0.12.5 Requires-Python <4.0,>=3.9; 0.12.50 Requires-Python <4.0,>=3.9; 0.12.51 Requires-Python <4.0,>=3.9; 0.12.52 Requires-Python <4.0,>=3.9; 0.12.52.post1 Requires-Python <4.0,>=3.9; 0.12.6 Requires-Python <4.0,>=3.9; 0.12.7 Requires-Python <4.0,>=3.9; 0.12.8 Requires-Python <4.0,>=3.9; 0.12.9 Requires-Python <4.0,>=3.9; 0.13.0 Requires-Python <4.0,>=3.9; 0.13.0 Requires-Python >=3.7.1; 0.13.1 Requires-Python <4.0,>=3.9; 0.13.2 Requires-Python <4.0,>=3.9; 0.13.3 Requires-Python <4.0,>=3.9; 0.14.0 Requires-Python >=3.7.1; 0.15.0 Requires-Python >=3.7.1; 0.16.0 Requires-Python >=3.7.1; 0.18.0 Requires-Python >=3.7.1; 0.18.1 Requires-Python >=3.7.1; 0.19.0 Requires-Python >=3.7.1; 0.20.0 Requires-Python >=3.7.1; 0.22.0 Requires-Python >=3.7.1; 0.22.1 Requires-Python >=3.7.1; 0.23.0 Requires-Python >=3.7.1; 0.23.1 Requires-Python >=3.7.1; 0.24.0 Requires-Python >=3.7.1; 0.25.0 Requires-Python >=3.7.1; 0.26.0 Requires-Python >=3.7.1; 0.26.1 Requires-Python >=3.7.1; 0.26.2 Requires-Python >=3.7.1; 0.26.3 Requires-Python >=3.7.1; 0.26.4 Requires-Python >=3.7.1; 0.26.5 Requires-Python >=3.7.1; 0.27.0 Requires-Python >=3.7.1; 0.27.1 Requires-Python >=3.7.1; 0.27.10 Requires-Python >=3.7.1; 0.27.2 Requires-Python >=3.7.1; 0.27.3 Requires-Python >=3.7.1; 0.27.4 Requires-Python >=3.7.1; 0.27.5 Requires-Python >=3.7.1; 0.27.6 Requires-Python >=3.7.1; 0.27.7 Requires-Python >=3.7.1; 0.27.8 Requires-Python >=3.7.1; 0.27.9 Requires-Python >=3.7.1; 0.28.0 Requires-Python >=3.7.1; 0.28.1 Requires-Python >=3.7.1; 0.9.41 Requires-Python >=3.8.1,<4.0; 0.9.42 Requires-Python >=3.8.1,<4.0; 0.9.42.post3 Requires-Python >=3.8.1,<4.0; 0.9.43 Requires-Python >=3.8.1,<4.0; 0.9.44 Requires-Python >=3.8.1,<4.0; 0.9.44.post1 Requires-Python >=3.8.1,<4.0; 0.9.44.post2 Requires-Python >=3.8.1,<4.0; 0.9.44.post3 Requires-Python >=3.8.1,<4.0; 0.9.45 Requires-Python >=3.8.1,<4.0; 0.9.46 Requires-Python >=3.8.1,<4.0; 0.9.47 Requires-Python >=3.8.1,<4.0; 0.9.48 Requires-Python >=3.8.1,<4.0; 0.9.49 Requires-Python >=3.8.1,<4.0; 0.9.50 Requires-Python >=3.8.1,<4.0; 0.9.50.post1 Requires-Python >=3.8.1,<4.0; 0.9.51 Requires-Python >=3.8.1,<4.0; 0.9.52 Requires-Python >=3.8.1,<4.0; 0.9.53 Requires-Python >=3.8.1,<4.0; 0.9.54 Requires-Python >=3.8.1,<4.0; 0.9.55 Requires-Python >=3.8.1,<4.0; 0.9.56 Requires-Python >=3.8.1,<4.0; 1.0.0 Requires-Python >=3.7.1; 1.0.0 Requires-Python >=3.8; 1.0.0b1 Requires-Python >=3.7.1,<4.0.0; 1.0.0b2 Requires-Python >=3.7.1,<4.0.0; 1.0.0b3 Requires-Python >=3.7.1,<4.0.0; 1.0.0rc1 Requires-Python >=3.7.1; 1.0.0rc2 Requires-Python >=3.7.1; 1.0.0rc3 Requires-Python >=3.7.1; 1.0.1 Requires-Python >=3.7.1; 1.0.1 Requires-Python >=3.8; 1.1.0 Requires-Python >=3.7.1; 1.1.0 Requires-Python >=3.8; 1.1.0 Requires-Python >=3.9; 1.1.1 Requires-Python >=3.7.1; 1.1.1 Requires-Python >=3.8; 1.1.1 Requires-Python >=3.9; 1.1.2 Requires-Python >=3.7.1; 1.1.2 Requires-Python >=3.8; 1.1.3 Requires-Python >=3.8; 1.10.0 Requires-Python <3.12,>=3.8; 1.10.0 Requires-Python >=3.7.1; 1.10.0 Requires-Python >=3.9; 1.10.0rc1 Requires-Python <3.12,>=3.8; 1.10.0rc2 Requires-Python <3.12,>=3.8; 1.10.1 Requires-Python <3.12,>=3.8; 1.100.0 Requires-Python >=3.8; 1.100.1 Requires-Python >=3.8; 1.100.2 Requires-Python >=3.8; 1.101.0 Requires-Python >=3.8; 1.11.0 Requires-Python <3.13,>=3.9; 1.11.0 Requires-Python >=3.7.1; 1.11.0 Requires-Python >=3.9; 1.11.0.post1 Requires-Python >=3.9; 1.11.0rc1 Requires-Python <3.13,>=3.9; 1.11.0rc2 Requires-Python <3.13,>=3.9; 1.11.1 Requires-Python <3.13,>=3.9; 1.11.1 Requires-Python >=3.7.1; 1.11.2 Requires-Python <3.13,>=3.9; 1.11.3 Requires-Python <3.13,>=3.9; 1.11.4 Requires-Python >=3.9; 1.12.0 Requires-Python <3.15,>=3.9; 1.12.0 Requires-Python >=3.7.1; 1.12.0 Requires-Python >=3.9; 1.12.0rc1 Requires-Python >=3.9; 1.12.0rc2 Requires-Python >=3.9; 1.13.0 Requires-Python >=3.9; 1.13.0rc1 Requires-Python >=3.9; 1.13.1 Requires-Python >=3.9; 1.13.3 Requires-Python >=3.7.1; 1.13.4 Requires-Python >=3.7.1; 1.14.0 Requires-Python >=3.10; 1.14.0 Requires-Python >=3.7.1; 1.14.0rc1 Requires-Python >=3.10; 1.14.0rc2 Requires-Python >=3.10; 1.14.1 Requires-Python >=3.10; 1.14.1 Requires-Python >=3.7.1; 1.14.2 Requires-Python >=3.7.1; 1.14.3 Requires-Python >=3.7.1; 1.15.0 Requires-Python >=3.10; 1.15.0rc1 Requires-Python >=3.10; 1.15.0rc2 Requires-Python >=3.10; 1.15.1 Requires-Python >=3.10; 1.15.2 Requires-Python >=3.10; 1.15.3 Requires-Python >=3.10; 1.16.0 Requires-Python >=3.11; 1.16.0 Requires-Python >=3.7.1; 1.16.0rc1 Requires-Python >=3.11; 1.16.0rc2 Requires-Python >=3.11; 1.16.1 Requires-Python >=3.11; 1.16.1 Requires-Python >=3.7.1; 1.16.2 Requires-Python >=3.7.1; 1.17.0 Requires-Python >=3.7.1; 1.17.1 Requires-Python >=3.7.1; 1.18.0 Requires-Python >=3.7.1; 1.19.0 Requires-Python >=3.7.1; 1.2.0 Requires-Python >=3.7.1; 1.2.0 Requires-Python >=3.8; 1.2.0rc1 Requires-Python >=3.8; 1.2.1 Requires-Python >=3.7.1; 1.2.1 Requires-Python >=3.8; 1.2.2 Requires-Python >=3.7.1; 1.2.2 Requires-Python >=3.8; 1.2.3 Requires-Python >=3.7.1; 1.2.4 Requires-Python >=3.7.1; 1.20.0 Requires-Python >=3.7.1; 1.21.0 Requires-Python >=3.7.1; 1.21.1 Requires-Python >=3.7.1; 1.21.2 Requires-Python >=3.7.1; 1.22.0 Requires-Python >=3.7.1; 1.23.0 Requires-Python >=3.7.1; 1.23.1 Requires-Python >=3.7.1; 1.23.2 Requires-Python >=3.7.1; 1.23.3 Requires-Python >=3.7.1; 1.23.4 Requires-Python >=3.7.1; 1.23.5 Requires-Python >=3.7.1; 1.23.6 Requires-Python >=3.7.1; 1.24.0 Requires-Python >=3.7.1; 1.24.1 Requires-Python >=3.7.1; 1.25.0 Requires-Python >=3.7.1; 1.25.1 Requires-Python >=3.7.1; 1.25.2 Requires-Python >=3.7.1; 1.26.0 Requires-Python >=3.7.1; 1.27.0 Requires-Python >=3.7.1; 1.28.0 Requires-Python >=3.7.1; 1.28.1 Requires-Python >=3.7.1; 1.28.2 Requires-Python >=3.7.1; 1.29.0 Requires-Python >=3.7.1; 1.3.0 Requires-Python >=3.7.1; 1.3.0 Requires-Python >=3.8; 1.3.0rc1 Requires-Python >=3.8; 1.3.1 Requires-Python >=3.7.1; 1.3.1 Requires-Python >=3.8; 1.3.2 Requires-Python >=3.7.1; 1.3.2 Requires-Python >=3.8; 1.3.3 Requires-Python >=3.7.1; 1.3.4 Requires-Python >=3.7.1; 1.3.5 Requires-Python >=3.7.1; 1.3.6 Requires-Python >=3.7.1; 1.3.7 Requires-Python >=3.7.1; 1.3.8 Requires-Python >=3.7.1; 1.3.9 Requires-Python >=3.7.1; 1.30.0 Requires-Python >=3.7.1; 1.30.1 Requires-Python >=3.7.1; 1.30.2 Requires-Python >=3.7.1; 1.30.3 Requires-Python >=3.7.1; 1.30.4 Requires-Python >=3.7.1; 1.30.5 Requires-Python >=3.7.1; 1.31.0 Requires-Python >=3.7.1; 1.31.1 Requires-Python >=3.7.1; 1.31.2 Requires-Python >=3.7.1; 1.32.0 Requires-Python >=3.7.1; 1.32.1 Requires-Python >=3.7.1; 1.33.0 Requires-Python >=3.7.1; 1.34.0 Requires-Python >=3.7.1; 1.35.0 Requires-Python >=3.7.1; 1.35.1 Requires-Python >=3.7.1; 1.35.10 Requires-Python >=3.7.1; 1.35.11 Requires-Python >=3.7.1; 1.35.12 Requires-Python >=3.7.1; 1.35.13 Requires-Python >=3.7.1; 1.35.14 Requires-Python >=3.7.1; 1.35.15 Requires-Python >=3.7.1; 1.35.2 Requires-Python >=3.7.1; 1.35.3 Requires-Python >=3.7.1; 1.35.4 Requires-Python >=3.7.1; 1.35.5 Requires-Python >=3.7.1; 1.35.6 Requires-Python >=3.7.1; 1.35.7 Requires-Python >=3.7.1; 1.35.8 Requires-Python >=3.7.1; 1.35.9 Requires-Python >=3.7.1; 1.36.0 Requires-Python >=3.7.1; 1.36.1 Requires-Python >=3.7.1; 1.37.0 Requires-Python >=3.7.1; 1.37.1 Requires-Python >=3.7.1; 1.37.2 Requires-Python >=3.7.1; 1.38.0 Requires-Python >=3.7.1; 1.39.0 Requires-Python >=3.7.1; 1.4.0 Requires-Python >=3.7.1; 1.4.0 Requires-Python >=3.9; 1.4.0rc1 Requires-Python >=3.9; 1.4.1.post1 Requires-Python >=3.9; 1.4.2 Requires-Python >=3.9; 1.40.0 Requires-Python >=3.7.1; 1.40.1 Requires-Python >=3.7.1; 1.40.2 Requires-Python >=3.7.1; 1.40.3 Requires-Python >=3.7.1; 1.40.4 Requires-Python >=3.7.1; 1.40.5 Requires-Python >=3.7.1; 1.40.6 Requires-Python >=3.7.1; 1.40.7 Requires-Python >=3.7.1; 1.40.8 Requires-Python >=3.7.1; 1.41.0 Requires-Python >=3.7.1; 1.41.1 Requires-Python >=3.7.1; 1.42.0 Requires-Python >=3.7.1; 1.43.0 Requires-Python >=3.7.1; 1.43.1 Requires-Python >=3.7.1; 1.44.0 Requires-Python >=3.7.1; 1.44.1 Requires-Python >=3.7.1; 1.45.0 Requires-Python >=3.7.1; 1.45.1 Requires-Python >=3.7.1; 1.46.0 Requires-Python >=3.7.1; 1.46.1 Requires-Python >=3.7.1; 1.47.0 Requires-Python >=3.7.1; 1.47.1 Requires-Python >=3.7.1; 1.48.0 Requires-Python >=3.7.1; 1.49.0 Requires-Python >=3.7.1; 1.5.0 Requires-Python >=3.7.1; 1.5.0 Requires-Python >=3.9; 1.5.0rc1 Requires-Python >=3.9; 1.5.1 Requires-Python >=3.9; 1.5.2 Requires-Python >=3.9; 1.50.0 Requires-Python >=3.7.1; 1.50.1 Requires-Python >=3.7.1; 1.50.2 Requires-Python >=3.7.1; 1.51.0 Requires-Python >=3.7.1; 1.51.1 Requires-Python >=3.7.1; 1.51.2 Requires-Python >=3.7.1; 1.52.0 Requires-Python >=3.7.1; 1.52.1 Requires-Python >=3.7.1; 1.52.2 Requires-Python >=3.7.1; 1.53.0 Requires-Python >=3.7.1; 1.53.1 Requires-Python >=3.7.1; 1.54.0 Requires-Python >=3.8; 1.54.1 Requires-Python >=3.8; 1.54.2 Requires-Python >=3.8; 1.54.3 Requires-Python >=3.8; 1.54.4 Requires-Python >=3.8; 1.54.5 Requires-Python >=3.8; 1.55.0 Requires-Python >=3.8; 1.55.1 Requires-Python >=3.8; 1.55.2 Requires-Python >=3.8; 1.55.3 Requires-Python >=3.8; 1.56.0 Requires-Python >=3.8; 1.56.1 Requires-Python >=3.8; 1.56.2 Requires-Python >=3.8; 1.57.0 Requires-Python >=3.8; 1.57.1 Requires-Python >=3.8; 1.57.2 Requires-Python >=3.8; 1.57.3 Requires-Python >=3.8; 1.57.4 Requires-Python >=3.8; 1.58.0 Requires-Python >=3.8; 1.58.1 Requires-Python >=3.8; 1.59.2 Requires-Python >=3.8; 1.59.3 Requires-Python >=3.8; 1.59.4 Requires-Python >=3.8; 1.59.5 Requires-Python >=3.8; 1.59.6 Requires-Python >=3.8; 1.59.7 Requires-Python >=3.8; 1.59.8 Requires-Python >=3.8; 1.59.9 Requires-Python >=3.8; 1.6.0 Requires-Python >=3.7.1; 1.6.0 Requires-Python >=3.9; 1.6.0rc1 Requires-Python >=3.9; 1.6.1 Requires-Python >=3.7.1; 1.6.1 Requires-Python >=3.9; 1.60.0 Requires-Python >=3.8; 1.60.1 Requires-Python >=3.8; 1.60.2 Requires-Python >=3.8; 1.61.0 Requires-Python >=3.8; 1.61.1 Requires-Python >=3.8; 1.62.0 Requires-Python >=3.8; 1.63.0 Requires-Python >=3.8; 1.63.1 Requires-Python >=3.8; 1.63.2 Requires-Python >=3.8; 1.64.0 Requires-Python >=3.8; 1.65.0 Requires-Python >=3.8; 1.65.1 Requires-Python >=3.8; 1.65.2 Requires-Python >=3.8; 1.65.3 Requires-Python >=3.8; 1.65.4 Requires-Python >=3.8; 1.65.5 Requires-Python >=3.8; 1.66.0 Requires-Python >=3.8; 1.66.1 Requires-Python >=3.8; 1.66.2 Requires-Python >=3.8; 1.66.3 Requires-Python >=3.8; 1.66.5 Requires-Python >=3.8; 1.67.0 Requires-Python >=3.8; 1.68.0 Requires-Python >=3.8; 1.68.1 Requires-Python >=3.8; 1.68.2 Requires-Python >=3.8; 1.69.0 Requires-Python >=3.8; 1.7.0 Requires-Python >=3.10; 1.7.0 Requires-Python >=3.7.1; 1.7.0rc1 Requires-Python >=3.10; 1.7.1 Requires-Python >=3.10; 1.7.1 Requires-Python >=3.7.1; 1.7.2 Requires-Python >=3.7.1; 1.70.0 Requires-Python >=3.8; 1.71.0 Requires-Python >=3.8; 1.72.0 Requires-Python >=3.8; 1.73.0 Requires-Python >=3.8; 1.74.0 Requires-Python >=3.8; 1.74.1 Requires-Python >=3.8; 1.75.0 Requires-Python >=3.8; 1.76.0 Requires-Python >=3.8; 1.76.1 Requires-Python >=3.8; 1.76.2 Requires-Python >=3.8; 1.77.0 Requires-Python >=3.8; 1.78.0 Requires-Python >=3.8; 1.78.1 Requires-Python >=3.8; 1.79.0 Requires-Python >=3.8; 1.8.0 Requires-Python >=3.7.1; 1.8.0 Requires-Python >=3.8; 1.8.0 Requires-Python >=3.8,<3.11; 1.8.0.post1 Requires-Python >=3.8; 1.8.0rc1 Requires-Python >=3.8,<3.11; 1.8.0rc2 Requires-Python >=3.8,<3.11; 1.8.0rc3 Requires-Python >=3.8,<3.11; 1.8.0rc4 Requires-Python >=3.8,<3.11; 1.8.1 Requires-Python >=3.8,<3.11; 1.80.0 Requires-Python >=3.8; 1.81.0 Requires-Python >=3.8; 1.82.0 Requires-Python >=3.8; 1.82.1 Requires-Python >=3.8; 1.83.0 Requires-Python >=3.8; 1.84.0 Requires-Python >=3.8; 1.85.0 Requires-Python >=3.8; 1.86.0 Requires-Python >=3.8; 1.87.0 Requires-Python >=3.8; 1.88.0 Requires-Python >=3.8; 1.89.0 Requires-Python >=3.8; 1.9.0 Requires-Python >=3.7.1; 1.9.0 Requires-Python >=3.8,<3.12; 1.9.0 Requires-Python >=3.9; 1.9.0.post1 Requires-Python >=3.9; 1.9.0rc1 Requires-Python >=3.8,<3.12; 1.9.0rc2 Requires-Python >=3.8,<3.12; 1.9.0rc3 Requires-Python >=3.8,<3.12; 1.9.1 Requires-Python >=3.8,<3.12; 1.9.2 Requires-Python >=3.8; 1.9.3 Requires-Python >=3.8; 1.90.0 Requires-Python >=3.8; 1.91.0 Requires-Python >=3.8; 1.92.0 Requires-Python >=3.8; 1.92.1 Requires-Python >=3.8; 1.92.2 Requires-Python >=3.8; 1.92.3 Requires-Python >=3.8; 1.93.0 Requires-Python >=3.8; 1.93.1 Requires-Python >=3.8; 1.93.2 Requires-Python >=3.8; 1.93.3 Requires-Python >=3.8; 1.94.0 Requires-Python >=3.8; 1.95.0 Requires-Python >=3.8; 1.95.1 Requires-Python >=3.8; 1.96.0 Requires-Python >=3.8; 1.96.1 Requires-Python >=3.8; 1.97.0 Requires-Python >=3.8; 1.97.1 Requires-Python >=3.8; 1.97.2 Requires-Python >=3.8; 1.98.0 Requires-Python >=3.8; 1.99.0 Requires-Python >=3.8; 1.99.1 Requires-Python >=3.8; 1.99.2 Requires-Python >=3.8; 1.99.3 Requires-Python >=3.8; 1.99.4 Requires-Python >=3.8; 1.99.5 Requires-Python >=3.8; 1.99.6 Requires-Python >=3.8; 1.99.7 Requires-Python >=3.8; 1.99.8 Requires-Python >=3.8; 1.99.9 Requires-Python >=3.8; 2.10.0 Requires-Python >=3.8; 2.10.0b1 Requires-Python >=3.8; 2.10.0b2 Requires-Python >=3.8; 2.10.1 Requires-Python >=3.8; 2.10.2 Requires-Python >=3.8; 2.10.3 Requires-Python >=3.8; 2.10.4 Requires-Python >=3.8; 2.10.5 Requires-Python >=3.8; 2.10.6 Requires-Python >=3.8; 2.11.0 Requires-Python >=3.9; 2.11.0a1 Requires-Python >=3.9; 2.11.0a2 Requires-Python >=3.9; 2.11.0b1 Requires-Python >=3.9; 2.11.0b2 Requires-Python >=3.9; 2.11.1 Requires-Python >=3.9; 2.11.2 Requires-Python >=3.9; 2.11.3 Requires-Python >=3.9; 2.11.4 Requires-Python >=3.9; 2.11.5 Requires-Python >=3.9; 2.11.6 Requires-Python >=3.9; 2.11.7 Requires-Python >=3.9; 2.12.0a1 Requires-Python >=3.9; 2.6.0 Requires-Python >=3.8; 2.6.0b1 Requires-Python >=3.8; 2.6.1 Requires-Python >=3.8; 2.6.2 Requires-Python >=3.8; 2.6.3 Requires-Python >=3.8; 2.6.4 Requires-Python >=3.8; 2.7.0 Requires-Python >=3.8; 2.7.0b1 Requires-Python >=3.8; 2.7.1 Requires-Python >=3.8; 2.7.2 Requires-Python >=3.8; 2.7.3 Requires-Python >=3.8; 2.7.4 Requires-Python >=3.8; 2.8.0 Requires-Python >=3.8; 2.8.0b1 Requires-Python >=3.8; 2.8.1 Requires-Python >=3.8; 2.8.2 Requires-Python >=3.8; 2.9.0 Requires-Python >=3.8; 2.9.0b1 Requires-Python >=3.8; 2.9.0b2 Requires-Python >=3.8; 2.9.1 Requires-Python >=3.8; 2.9.2 Requires-Python >=3.8 ERROR: Could not find a version that satisfies the requirement llama-index-core (from versions: none) ERROR: No matching distribution found for llama-index-core

ERROR: Ignored the following versions that require a different python version: 0.10.0 Requires-Python >=3.8.1,<4.0; 0.10.1 Requires-Python >=3.8.1,<4.0; 0.10.10 Requires-Python >=3.8.1,<4.0; 0.10.11 Requires-Python >=3.8.1,<4.0; 0.10.11.post1 Requires-Python >=3.8.1,<4.0; 0.10.12 Requires-Python >=3.8.1,<4.0; 0.10.13 Requires-Python >=3.8.1,<4.0; 0.10.14 Requires-Python >=3.8.1,<4.0; 0.10.14.post1 Requires-Python >=3.8.1,<4.0; 0.10.15 Requires-Python >=3.8.1,<4.0; 0.10.16 Requires-Python >=3.8.1,<4.0; 0.10.16.post1 Requires-Python >=3.8.1,<4.0; 0.10.17 Requires-Python >=3.8.1,<4.0; 0.10.18 Requires-Python >=3.8.1,<4.0; 0.10.18.post1 Requires-Python >=3.8.1,<4.0; 0.10.19 Requires-Python >=3.8.1,<4.0; 0.10.2 Requires-Python >=3.8.1,<4.0; 0.10.20 Requires-Python >=3.8.1,<4.0; 0.10.20.post1 Requires-Python >=3.8.1,<4.0; 0.10.20.post2 Requires-Python >=3.8.1,<4.0; 0.10.20.post3 Requires-Python <4.0,>=3.8.1; 0.10.21 Requires-Python <4.0,>=3.8.1; 0.10.21.post1 Requires-Python <4.0,>=3.8.1; 0.10.22 Requires-Python <4.0,>=3.8.1; 0.10.23 Requires-Python <4.0,>=3.8.1; 0.10.23.post1 Requires-Python <4.0,>=3.8.1; 0.10.24 Requires-Python <4.0,>=3.8.1; 0.10.24.post1 Requires-Python <4.0,>=3.8.1; 0.10.24a1 Requires-Python <4.0,>=3.8.1; 0.10.25 Requires-Python <4.0,>=3.8.1; 0.10.25.post1 Requires-Python <4.0,>=3.8.1; 0.10.25.post2 Requires-Python <4.0,>=3.8.1; 0.10.25.post3 Requires-Python <4.0,>=3.8.1; 0.10.25a1 Requires-Python <4.0,>=3.8.1; 0.10.26 Requires-Python <4.0,>=3.8.1; 0.10.27 Requires-Python <4.0,>=3.8.1; 0.10.28 Requires-Python <4.0,>=3.8.1; 0.10.29 Requires-Python <4.0,>=3.8.1; 0.10.3 Requires-Python >=3.8.1,<4.0; 0.10.30 Requires-Python <4.0,>=3.8.1; 0.10.31 Requires-Python <4.0,>=3.8.1; 0.10.32 Requires-Python <4.0,>=3.8.1; 0.10.33 Requires-Python <4.0,>=3.8.1; 0.10.34 Requires-Python <4.0,>=3.8.1; 0.10.35 Requires-Python <4.0,>=3.8.1; 0.10.35.post1 Requires-Python <4.0,>=3.8.1; 0.10.36 Requires-Python <4.0,>=3.8.1; 0.10.37 Requires-Python <4.0,>=3.8.1; 0.10.37.post1 Requires-Python <4.0,>=3.8.1; 0.10.38 Requires-Python <4.0,>=3.8.1; 0.10.38.post1 Requires-Python <4.0,>=3.8.1; 0.10.38.post2 Requires-Python <4.0,>=3.8.1; 0.10.39 Requires-Python <4.0,>=3.8.1; 0.10.39.post1 Requires-Python <4.0,>=3.8.1; 0.10.40 Requires-Python <4.0,>=3.8.1; 0.10.41 Requires-Python <4.0,>=3.8.1; 0.10.42 Requires-Python <4.0,>=3.8.1; 0.10.43 Requires-Python <4.0,>=3.8.1; 0.10.43.post1 Requires-Python <4.0,>=3.8.1; 0.10.44 Requires-Python <4.0,>=3.8.1; 0.10.45 Requires-Python <4.0,>=3.8.1; 0.10.46 Requires-Python <4.0,>=3.8.1; 0.10.47 Requires-Python <4.0,>=3.8.1; 0.10.48 Requires-Python <4.0,>=3.8.1; 0.10.48.post1 Requires-Python <4.0,>=3.8.1; 0.10.49 Requires-Python <4.0,>=3.8.1; 0.10.5 Requires-Python >=3.8.1,<4.0; 0.10.50 Requires-Python <4.0,>=3.8.1; 0.10.50.post1 Requires-Python <4.0,>=3.8.1; 0.10.51 Requires-Python <4.0,>=3.8.1; 0.10.52 Requires-Python <4.0,>=3.8.1; 0.10.52.post1 Requires-Python <4.0,>=3.8.1; 0.10.52.post2 Requires-Python <4.0,>=3.8.1; 0.10.53 Requires-Python <4.0,>=3.8.1; 0.10.53.post1 Requires-Python <4.0,>=3.8.1; 0.10.54 Requires-Python <4.0,>=3.8.1; 0.10.54.post1 Requires-Python <4.0,>=3.8.1; 0.10.55 Requires-Python <4.0,>=3.8.1; 0.10.56 Requires-Python <4.0,>=3.8.1; 0.10.57 Requires-Python <4.0,>=3.8.1; 0.10.58 Requires-Python <4.0,>=3.8.1; 0.10.59 Requires-Python <4.0,>=3.8.1; 0.10.59a1 Requires-Python <4.0,>=3.8.1; 0.10.59a2 Requires-Python <4.0,>=3.8.1; 0.10.5a1 Requires-Python >=3.8.1,<4.0; 0.10.5a10 Requires-Python >=3.8.1,<4.0; 0.10.5a2 Requires-Python >=3.8.1,<4.0; 0.10.5a3 Requires-Python >=3.8.1,<4.0; 0.10.5a4 Requires-Python >=3.8.1,<4.0; 0.10.5a5 Requires-Python >=3.8.1,<4.0; 0.10.5a6 Requires-Python >=3.8.1,<4.0; 0.10.5a7 Requires-Python >=3.8.1,<4.0; 0.10.5a8 Requires-Python >=3.8.1,<4.0; 0.10.5a9 Requires-Python >=3.8.1,<4.0; 0.10.6 Requires-Python >=3.8.1,<4.0; 0.10.6.post1 Requires-Python >=3.8.1,<4.0; 0.10.60 Requires-Python <4.0,>=3.8.1; 0.10.61 Requires-Python <4.0,>=3.8.1; 0.10.62 Requires-Python <4.0,>=3.8.1; 0.10.63 Requires-Python <4.0,>=3.8.1; 0.10.64 Requires-Python <4.0,>=3.8.1; 0.10.65 Requires-Python <4.0,>=3.8.1; 0.10.66 Requires-Python <4.0,>=3.8.1; 0.10.67 Requires-Python <4.0,>=3.8.1; 0.10.68 Requires-Python <4.0,>=3.8.1; 0.10.68.post1 Requires-Python <4.0,>=3.8.1; 0.10.7 Requires-Python >=3.8.1,<4.0; 0.10.8 Requires-Python >=3.8.1,<4.0; 0.10.8.post1 Requires-Python >=3.8.1,<4.0; 0.10.9 Requires-Python >=3.8.1,<4.0; 0.11.0 Requires-Python <4.0,>=3.8.1; 0.11.0 Requires-Python >=3.7.1; 0.11.0.post1 Requires-Python <4.0,>=3.8.1; 0.11.1 Requires-Python <4.0,>=3.8.1; 0.11.1 Requires-Python >=3.7.1; 0.11.10 Requires-Python <4.0,>=3.8.1; 0.11.11 Requires-Python <4.0,>=3.8.1; 0.11.12 Requires-Python <4.0,>=3.8.1; 0.11.13 Requires-Python <4.0,>=3.8.1; 0.11.13.post1 Requires-Python <4.0,>=3.8.1; 0.11.14 Requires-Python <4.0,>=3.8.1; 0.11.15 Requires-Python <4.0,>=3.8.1; 0.11.16 Requires-Python <4.0,>=3.8.1; 0.11.17 Requires-Python <4.0,>=3.8.1; 0.11.18 Requires-Python <4.0,>=3.8.1; 0.11.19 Requires-Python <4.0,>=3.8.1; 0.11.2 Requires-Python <4.0,>=3.8.1; 0.11.2 Requires-Python >=3.7.1; 0.11.20 Requires-Python <4.0,>=3.8.1; 0.11.21 Requires-Python <4.0,>=3.8.1; 0.11.22 Requires-Python <4.0,>=3.8.1; 0.11.23 Requires-Python <4.0,>=3.8.1; 0.11.3 Requires-Python <4.0,>=3.8.1; 0.11.3 Requires-Python >=3.7.1; 0.11.4 Requires-Python <4.0,>=3.8.1; 0.11.4 Requires-Python >=3.7.1; 0.11.5 Requires-Python <4.0,>=3.8.1; 0.11.5 Requires-Python >=3.7.1; 0.11.6 Requires-Python <4.0,>=3.8.1; 0.11.6 Requires-Python >=3.7.1; 0.11.7 Requires-Python <4.0,>=3.8.1; 0.11.8 Requires-Python <4.0,>=3.8.1; 0.11.9 Requires-Python <4.0,>=3.8.1; 0.12.0 Requires-Python <4.0,>=3.9; 0.12.0 Requires-Python >=3.7.1; 0.12.1 Requires-Python <4.0,>=3.9; 0.12.10 Requires-Python <4.0,>=3.9; 0.12.10.post1 Requires-Python <4.0,>=3.9; 0.12.11 Requires-Python <4.0,>=3.9; 0.12.12 Requires-Python <4.0,>=3.9; 0.12.13 Requires-Python <4.0,>=3.9; 0.12.14 Requires-Python <4.0,>=3.9; 0.12.15 Requires-Python <4.0,>=3.9; 0.12.16 Requires-Python <4.0,>=3.9; 0.12.16.post1 Requires-Python <4.0,>=3.9; 0.12.17 Requires-Python <4.0,>=3.9; 0.12.18 Requires-Python <4.0,>=3.9; 0.12.19 Requires-Python <4.0,>=3.9; 0.12.2 Requires-Python <4.0,>=3.9; 0.12.20 Requires-Python <4.0,>=3.9; 0.12.21 Requires-Python <4.0,>=3.9; 0.12.22 Requires-Python <4.0,>=3.9; 0.12.23 Requires-Python <4.0,>=3.9; 0.12.23.post1 Requires-Python <4.0,>=3.9; 0.12.23.post2 Requires-Python <4.0,>=3.9; 0.12.24 Requires-Python <4.0,>=3.9; 0.12.24.post1 Requires-Python <4.0,>=3.9; 0.12.25 Requires-Python <4.0,>=3.9; 0.12.26 Requires-Python <4.0,>=3.9; 0.12.27 Requires-Python <4.0,>=3.9; 0.12.27a1 Requires-Python <4.0,>=3.9; 0.12.27a2 Requires-Python <4.0,>=3.9; 0.12.27a3 Requires-Python <4.0,>=3.9; 0.12.28 Requires-Python <4.0,>=3.9; 0.12.29 Requires-Python <4.0,>=3.9; 0.12.3 Requires-Python <4.0,>=3.9; 0.12.30 Requires-Python <4.0,>=3.9; 0.12.31 Requires-Python <4.0,>=3.9; 0.12.32 Requires-Python <4.0,>=3.9; 0.12.33 Requires-Python <4.0,>=3.9; 0.12.33.post1 Requires-Python <4.0,>=3.9; 0.12.34 Requires-Python <4.0,>=3.9; 0.12.34.post1 Requires-Python <4.0,>=3.9; 0.12.34a1 Requires-Python <4.0,>=3.9; 0.12.34a2 Requires-Python <4.0,>=3.9; 0.12.34a3 Requires-Python <4.0,>=3.9; 0.12.34a4 Requires-Python <4.0,>=3.9; 0.12.34a5 Requires-Python <4.0,>=3.9; 0.12.35 Requires-Python <4.0,>=3.9; 0.12.36 Requires-Python <4.0,>=3.9; 0.12.37 Requires-Python <4.0,>=3.9; 0.12.38 Requires-Python <4.0,>=3.9; 0.12.39 Requires-Python <4.0,>=3.9; 0.12.4 Requires-Python <4.0,>=3.9; 0.12.40 Requires-Python <4.0,>=3.9; 0.12.41 Requires-Python <4.0,>=3.9; 0.12.42 Requires-Python <4.0,>=3.9; 0.12.43 Requires-Python <4.0,>=3.9; 0.12.44 Requires-Python <4.0,>=3.9; 0.12.45 Requires-Python <4.0,>=3.9; 0.12.46 Requires-Python <4.0,>=3.9; 0.12.47 Requires-Python <4.0,>=3.9; 0.12.48 Requires-Python <4.0,>=3.9; 0.12.49 Requires-Python <4.0,>=3.9; 0.12.5 Requires-Python <4.0,>=3.9; 0.12.50 Requires-Python <4.0,>=3.9; 0.12.51 Requires-Python <4.0,>=3.9; 0.12.52 Requires-Python <4.0,>=3.9; 0.12.52.post1 Requires-Python <4.0,>=3.9; 0.12.6 Requires-Python <4.0,>=3.9; 0.12.7 Requires-Python <4.0,>=3.9; 0.12.8 Requires-Python <4.0,>=3.9; 0.12.9 Requires-Python <4.0,>=3.9; 0.13.0 Requires-Python <4.0,>=3.9; 0.13.0 Requires-Python >=3.7.1; 0.13.1 Requires-Python <4.0,>=3.9; 0.13.2 Requires-Python <4.0,>=3.9; 0.13.3 Requires-Python <4.0,>=3.9; 0.14.0 Requires-Python >=3.7.1; 0.15.0 Requires-Python >=3.7.1; 0.16.0 Requires-Python >=3.7.1; 0.18.0 Requires-Python >=3.7.1; 0.18.1 Requires-Python >=3.7.1; 0.19.0 Requires-Python >=3.7.1; 0.20.0 Requires-Python >=3.7.1; 0.22.0 Requires-Python >=3.7.1; 0.22.1 Requires-Python >=3.7.1; 0.23.0 Requires-Python >=3.7.1; 0.23.1 Requires-Python >=3.7.1; 0.24.0 Requires-Python >=3.7.1; 0.25.0 Requires-Python >=3.7.1; 0.26.0 Requires-Python >=3.7.1; 0.26.1 Requires-Python >=3.7.1; 0.26.2 Requires-Python >=3.7.1; 0.26.3 Requires-Python >=3.7.1; 0.26.4 Requires-Python >=3.7.1; 0.26.5 Requires-Python >=3.7.1; 0.27.0 Requires-Python >=3.7.1; 0.27.1 Requires-Python >=3.7.1; 0.27.10 Requires-Python >=3.7.1; 0.27.2 Requires-Python >=3.7.1; 0.27.3 Requires-Python >=3.7.1; 0.27.4 Requires-Python >=3.7.1; 0.27.5 Requires-Python >=3.7.1; 0.27.6 Requires-Python >=3.7.1; 0.27.7 Requires-Python >=3.7.1; 0.27.8 Requires-Python >=3.7.1; 0.27.9 Requires-Python >=3.7.1; 0.28.0 Requires-Python >=3.7.1; 0.28.1 Requires-Python >=3.7.1; 0.9.41 Requires-Python >=3.8.1,<4.0; 0.9.42 Requires-Python >=3.8.1,<4.0; 0.9.42.post3 Requires-Python >=3.8.1,<4.0; 0.9.43 Requires-Python >=3.8.1,<4.0; 0.9.44 Requires-Python >=3.8.1,<4.0; 0.9.44.post1 Requires-Python >=3.8.1,<4.0; 0.9.44.post2 Requires-Python >=3.8.1,<4.0; 0.9.44.post3 Requires-Python >=3.8.1,<4.0; 0.9.45 Requires-Python >=3.8.1,<4.0; 0.9.46 Requires-Python >=3.8.1,<4.0; 0.9.47 Requires-Python >=3.8.1,<4.0; 0.9.48 Requires-Python >=3.8.1,<4.0; 0.9.49 Requires-Python >=3.8.1,<4.0; 0.9.50 Requires-Python >=3.8.1,<4.0; 0.9.50.post1 Requires-Python >=3.8.1,<4.0; 0.9.51 Requires-Python >=3.8.1,<4.0; 0.9.52 Requires-Python >=3.8.1,<4.0; 0.9.53 Requires-Python >=3.8.1,<4.0; 0.9.54 Requires-Python >=3.8.1,<4.0; 0.9.55 Requires-Python >=3.8.1,<4.0; 0.9.56 Requires-Python >=3.8.1,<4.0; 1.0.0 Requires-Python >=3.7.1; 1.0.0 Requires-Python >=3.8; 1.0.0b1 Requires-Python >=3.7.1,<4.0.0; 1.0.0b2 Requires-Python >=3.7.1,<4.0.0; 1.0.0b3 Requires-Python >=3.7.1,<4.0.0; 1.0.0rc1 Requires-Python >=3.7.1; 1.0.0rc2 Requires-Python >=3.7.1; 1.0.0rc3 Requires-Python >=3.7.1; 1.0.1 Requires-Python >=3.7.1; 1.0.1 Requires-Python >=3.8; 1.1.0 Requires-Python >=3.7.1; 1.1.0 Requires-Python >=3.8; 1.1.0 Requires-Python >=3.9; 1.1.1 Requires-Python >=3.7.1; 1.1.1 Requires-Python >=3.8; 1.1.1 Requires-Python >=3.9; 1.1.2 Requires-Python >=3.7.1; 1.1.2 Requires-Python >=3.8; 1.1.3 Requires-Python >=3.8; 1.10.0 Requires-Python <3.12,>=3.8; 1.10.0 Requires-Python >=3.7.1; 1.10.0 Requires-Python >=3.9; 1.10.0rc1 Requires-Python <3.12,>=3.8; 1.10.0rc2 Requires-Python <3.12,>=3.8; 1.10.1 Requires-Python <3.12,>=3.8; 1.100.0 Requires-Python >=3.8; 1.100.1 Requires-Python >=3.8; 1.100.2 Requires-Python >=3.8; 1.101.0 Requires-Python >=3.8; 1.11.0 Requires-Python <3.13,>=3.9; 1.11.0 Requires-Python >=3.7.1; 1.11.0 Requires-Python >=3.9; 1.11.0.post1 Requires-Python >=3.9; 1.11.0rc1 Requires-Python <3.13,>=3.9; 1.11.0rc2 Requires-Python <3.13,>=3.9; 1.11.1 Requires-Python <3.13,>=3.9; 1.11.1 Requires-Python >=3.7.1; 1.11.2 Requires-Python <3.13,>=3.9; 1.11.3 Requires-Python <3.13,>=3.9; 1.11.4 Requires-Python >=3.9; 1.12.0 Requires-Python <3.15,>=3.9; 1.12.0 Requires-Python >=3.7.1; 1.12.0 Requires-Python >=3.9; 1.12.0rc1 Requires-Python >=3.9; 1.12.0rc2 Requires-Python >=3.9; 1.13.0 Requires-Python >=3.9; 1.13.0rc1 Requires-Python >=3.9; 1.13.1 Requires-Python >=3.9; 1.13.3 Requires-Python >=3.7.1; 1.13.4 Requires-Python >=3.7.1; 1.14.0 Requires-Python >=3.10; 1.14.0 Requires-Python >=3.7.1; 1.14.0rc1 Requires-Python >=3.10; 1.14.0rc2 Requires-Python >=3.10; 1.14.1 Requires-Python >=3.10; 1.14.1 Requires-Python >=3.7.1; 1.14.2 Requires-Python >=3.7.1; 1.14.3 Requires-Python >=3.7.1; 1.15.0 Requires-Python >=3.10; 1.15.0rc1 Requires-Python >=3.10; 1.15.0rc2 Requires-Python >=3.10; 1.15.1 Requires-Python >=3.10; 1.15.2 Requires-Python >=3.10; 1.15.3 Requires-Python >=3.10; 1.16.0 Requires-Python >=3.11; 1.16.0 Requires-Python >=3.7.1; 1.16.0rc1 Requires-Python >=3.11; 1.16.0rc2 Requires-Python >=3.11; 1.16.1 Requires-Python >=3.11; 1.16.1 Requires-Python >=3.7.1; 1.16.2 Requires-Python >=3.7.1; 1.17.0 Requires-Python >=3.7.1; 1.17.1 Requires-Python >=3.7.1; 1.18.0 Requires-Python >=3.7.1; 1.19.0 Requires-Python >=3.7.1; 1.2.0 Requires-Python >=3.7.1; 1.2.0 Requires-Python >=3.8; 1.2.0rc1 Requires-Python >=3.8; 1.2.1 Requires-Python >=3.7.1; 1.2.1 Requires-Python >=3.8; 1.2.2 Requires-Python >=3.7.1; 1.2.2 Requires-Python >=3.8; 1.2.3 Requires-Python >=3.7.1; 1.2.4 Requires-Python >=3.7.1; 1.20.0 Requires-Python >=3.7.1; 1.21.0 Requires-Python >=3.7.1; 1.21.1 Requires-Python >=3.7.1; 1.21.2 Requires-Python >=3.7.1; 1.22.0 Requires-Python >=3.7.1; 1.23.0 Requires-Python >=3.7.1; 1.23.1 Requires-Python >=3.7.1; 1.23.2 Requires-Python >=3.7.1; 1.23.3 Requires-Python >=3.7.1; 1.23.4 Requires-Python >=3.7.1; 1.23.5 Requires-Python >=3.7.1; 1.23.6 Requires-Python >=3.7.1; 1.24.0 Requires-Python >=3.7.1; 1.24.1 Requires-Python >=3.7.1; 1.25.0 Requires-Python >=3.7.1; 1.25.1 Requires-Python >=3.7.1; 1.25.2 Requires-Python >=3.7.1; 1.26.0 Requires-Python >=3.7.1; 1.27.0 Requires-Python >=3.7.1; 1.28.0 Requires-Python >=3.7.1; 1.28.1 Requires-Python >=3.7.1; 1.28.2 Requires-Python >=3.7.1; 1.29.0 Requires-Python >=3.7.1; 1.3.0 Requires-Python >=3.7.1; 1.3.0 Requires-Python >=3.8; 1.3.0rc1 Requires-Python >=3.8; 1.3.1 Requires-Python >=3.7.1; 1.3.1 Requires-Python >=3.8; 1.3.2 Requires-Python >=3.7.1; 1.3.2 Requires-Python >=3.8; 1.3.3 Requires-Python >=3.7.1; 1.3.4 Requires-Python >=3.7.1; 1.3.5 Requires-Python >=3.7.1; 1.3.6 Requires-Python >=3.7.1; 1.3.7 Requires-Python >=3.7.1; 1.3.8 Requires-Python >=3.7.1; 1.3.9 Requires-Python >=3.7.1; 1.30.0 Requires-Python >=3.7.1; 1.30.1 Requires-Python >=3.7.1; 1.30.2 Requires-Python >=3.7.1; 1.30.3 Requires-Python >=3.7.1; 1.30.4 Requires-Python >=3.7.1; 1.30.5 Requires-Python >=3.7.1; 1.31.0 Requires-Python >=3.7.1; 1.31.1 Requires-Python >=3.7.1; 1.31.2 Requires-Python >=3.7.1; 1.32.0 Requires-Python >=3.7.1; 1.32.1 Requires-Python >=3.7.1; 1.33.0 Requires-Python >=3.7.1; 1.34.0 Requires-Python >=3.7.1; 1.35.0 Requires-Python >=3.7.1; 1.35.1 Requires-Python >=3.7.1; 1.35.10 Requires-Python >=3.7.1; 1.35.11 Requires-Python >=3.7.1; 1.35.12 Requires-Python >=3.7.1; 1.35.13 Requires-Python >=3.7.1; 1.35.14 Requires-Python >=3.7.1; 1.35.15 Requires-Python >=3.7.1; 1.35.2 Requires-Python >=3.7.1; 1.35.3 Requires-Python >=3.7.1; 1.35.4 Requires-Python >=3.7.1; 1.35.5 Requires-Python >=3.7.1; 1.35.6 Requires-Python >=3.7.1; 1.35.7 Requires-Python >=3.7.1; 1.35.8 Requires-Python >=3.7.1; 1.35.9 Requires-Python >=3.7.1; 1.36.0 Requires-Python >=3.7.1; 1.36.1 Requires-Python >=3.7.1; 1.37.0 Requires-Python >=3.7.1; 1.37.1 Requires-Python >=3.7.1; 1.37.2 Requires-Python >=3.7.1; 1.38.0 Requires-Python >=3.7.1; 1.39.0 Requires-Python >=3.7.1; 1.4.0 Requires-Python >=3.7.1; 1.4.0 Requires-Python >=3.9; 1.4.0rc1 Requires-Python >=3.9; 1.4.1.post1 Requires-Python >=3.9; 1.4.2 Requires-Python >=3.9; 1.40.0 Requires-Python >=3.7.1; 1.40.1 Requires-Python >=3.7.1; 1.40.2 Requires-Python >=3.7.1; 1.40.3 Requires-Python >=3.7.1; 1.40.4 Requires-Python >=3.7.1; 1.40.5 Requires-Python >=3.7.1; 1.40.6 Requires-Python >=3.7.1; 1.40.7 Requires-Python >=3.7.1; 1.40.8 Requires-Python >=3.7.1; 1.41.0 Requires-Python >=3.7.1; 1.41.1 Requires-Python >=3.7.1; 1.42.0 Requires-Python >=3.7.1; 1.43.0 Requires-Python >=3.7.1; 1.43.1 Requires-Python >=3.7.1; 1.44.0 Requires-Python >=3.7.1; 1.44.1 Requires-Python >=3.7.1; 1.45.0 Requires-Python >=3.7.1; 1.45.1 Requires-Python >=3.7.1; 1.46.0 Requires-Python >=3.7.1; 1.46.1 Requires-Python >=3.7.1; 1.47.0 Requires-Python >=3.7.1; 1.47.1 Requires-Python >=3.7.1; 1.48.0 Requires-Python >=3.7.1; 1.49.0 Requires-Python >=3.7.1; 1.5.0 Requires-Python >=3.7.1; 1.5.0 Requires-Python >=3.9; 1.5.0rc1 Requires-Python >=3.9; 1.5.1 Requires-Python >=3.9; 1.5.2 Requires-Python >=3.9; 1.50.0 Requires-Python >=3.7.1; 1.50.1 Requires-Python >=3.7.1; 1.50.2 Requires-Python >=3.7.1; 1.51.0 Requires-Python >=3.7.1; 1.51.1 Requires-Python >=3.7.1; 1.51.2 Requires-Python >=3.7.1; 1.52.0 Requires-Python >=3.7.1; 1.52.1 Requires-Python >=3.7.1; 1.52.2 Requires-Python >=3.7.1; 1.53.0 Requires-Python >=3.7.1; 1.53.1 Requires-Python >=3.7.1; 1.54.0 Requires-Python >=3.8; 1.54.1 Requires-Python >=3.8; 1.54.2 Requires-Python >=3.8; 1.54.3 Requires-Python >=3.8; 1.54.4 Requires-Python >=3.8; 1.54.5 Requires-Python >=3.8; 1.55.0 Requires-Python >=3.8; 1.55.1 Requires-Python >=3.8; 1.55.2 Requires-Python >=3.8; 1.55.3 Requires-Python >=3.8; 1.56.0 Requires-Python >=3.8; 1.56.1 Requires-Python >=3.8; 1.56.2 Requires-Python >=3.8; 1.57.0 Requires-Python >=3.8; 1.57.1 Requires-Python >=3.8; 1.57.2 Requires-Python >=3.8; 1.57.3 Requires-Python >=3.8; 1.57.4 Requires-Python >=3.8; 1.58.0 Requires-Python >=3.8; 1.58.1 Requires-Python >=3.8; 1.59.2 Requires-Python >=3.8; 1.59.3 Requires-Python >=3.8; 1.59.4 Requires-Python >=3.8; 1.59.5 Requires-Python >=3.8; 1.59.6 Requires-Python >=3.8; 1.59.7 Requires-Python >=3.8; 1.59.8 Requires-Python >=3.8; 1.59.9 Requires-Python >=3.8; 1.6.0 Requires-Python >=3.7.1; 1.6.0 Requires-Python >=3.9; 1.6.0rc1 Requires-Python >=3.9; 1.6.1 Requires-Python >=3.7.1; 1.6.1 Requires-Python >=3.9; 1.60.0 Requires-Python >=3.8; 1.60.1 Requires-Python >=3.8; 1.60.2 Requires-Python >=3.8; 1.61.0 Requires-Python >=3.8; 1.61.1 Requires-Python >=3.8; 1.62.0 Requires-Python >=3.8; 1.63.0 Requires-Python >=3.8; 1.63.1 Requires-Python >=3.8; 1.63.2 Requires-Python >=3.8; 1.64.0 Requires-Python >=3.8; 1.65.0 Requires-Python >=3.8; 1.65.1 Requires-Python >=3.8; 1.65.2 Requires-Python >=3.8; 1.65.3 Requires-Python >=3.8; 1.65.4 Requires-Python >=3.8; 1.65.5 Requires-Python >=3.8; 1.66.0 Requires-Python >=3.8; 1.66.1 Requires-Python >=3.8; 1.66.2 Requires-Python >=3.8; 1.66.3 Requires-Python >=3.8; 1.66.5 Requires-Python >=3.8; 1.67.0 Requires-Python >=3.8; 1.68.0 Requires-Python >=3.8; 1.68.1 Requires-Python >=3.8; 1.68.2 Requires-Python >=3.8; 1.69.0 Requires-Python >=3.8; 1.7.0 Requires-Python >=3.10; 1.7.0 Requires-Python >=3.7.1; 1.7.0rc1 Requires-Python >=3.10; 1.7.1 Requires-Python >=3.10; 1.7.1 Requires-Python >=3.7.1; 1.7.2 Requires-Python >=3.7.1; 1.70.0 Requires-Python >=3.8; 1.71.0 Requires-Python >=3.8; 1.72.0 Requires-Python >=3.8; 1.73.0 Requires-Python >=3.8; 1.74.0 Requires-Python >=3.8; 1.74.1 Requires-Python >=3.8; 1.75.0 Requires-Python >=3.8; 1.76.0 Requires-Python >=3.8; 1.76.1 Requires-Python >=3.8; 1.76.2 Requires-Python >=3.8; 1.77.0 Requires-Python >=3.8; 1.78.0 Requires-Python >=3.8; 1.78.1 Requires-Python >=3.8; 1.79.0 Requires-Python >=3.8; 1.8.0 Requires-Python >=3.7.1; 1.8.0 Requires-Python >=3.8; 1.8.0 Requires-Python >=3.8,<3.11; 1.8.0.post1 Requires-Python >=3.8; 1.8.0rc1 Requires-Python >=3.8,<3.11; 1.8.0rc2 Requires-Python >=3.8,<3.11; 1.8.0rc3 Requires-Python >=3.8,<3.11; 1.8.0rc4 Requires-Python >=3.8,<3.11; 1.8.1 Requires-Python >=3.8,<3.11; 1.80.0 Requires-Python >=3.8; 1.81.0 Requires-Python >=3.8; 1.82.0 Requires-Python >=3.8; 1.82.1 Requires-Python >=3.8; 1.83.0 Requires-Python >=3.8; 1.84.0 Requires-Python >=3.8; 1.85.0 Requires-Python >=3.8; 1.86.0 Requires-Python >=3.8; 1.87.0 Requires-Python >=3.8; 1.88.0 Requires-Python >=3.8; 1.89.0 Requires-Python >=3.8; 1.9.0 Requires-Python >=3.7.1; 1.9.0 Requires-Python >=3.8,<3.12; 1.9.0 Requires-Python >=3.9; 1.9.0.post1 Requires-Python >=3.9; 1.9.0rc1 Requires-Python >=3.8,<3.12; 1.9.0rc2 Requires-Python >=3.8,<3.12; 1.9.0rc3 Requires-Python >=3.8,<3.12; 1.9.1 Requires-Python >=3.8,<3.12; 1.9.2 Requires-Python >=3.8; 1.9.3 Requires-Python >=3.8; 1.90.0 Requires-Python >=3.8; 1.91.0 Requires-Python >=3.8; 1.92.0 Requires-Python >=3.8; 1.92.1 Requires-Python >=3.8; 1.92.2 Requires-Python >=3.8; 1.92.3 Requires-Python >=3.8; 1.93.0 Requires-Python >=3.8; 1.93.1 Requires-Python >=3.8; 1.93.2 Requires-Python >=3.8; 1.93.3 Requires-Python >=3.8; 1.94.0 Requires-Python >=3.8; 1.95.0 Requires-Python >=3.8; 1.95.1 Requires-Python >=3.8; 1.96.0 Requires-Python >=3.8; 1.96.1 Requires-Python >=3.8; 1.97.0 Requires-Python >=3.8; 1.97.1 Requires-Python >=3.8; 1.97.2 Requires-Python >=3.8; 1.98.0 Requires-Python >=3.8; 1.99.0 Requires-Python >=3.8; 1.99.1 Requires-Python >=3.8; 1.99.2 Requires-Python >=3.8; 1.99.3 Requires-Python >=3.8; 1.99.4 Requires-Python >=3.8; 1.99.5 Requires-Python >=3.8; 1.99.6 Requires-Python >=3.8; 1.99.7 Requires-Python >=3.8; 1.99.8 Requires-Python >=3.8; 1.99.9 Requires-Python >=3.8; 2.10.0 Requires-Python >=3.8; 2.10.0b1 Requires-Python >=3.8; 2.10.0b2 Requires-Python >=3.8; 2.10.1 Requires-Python >=3.8; 2.10.2 Requires-Python >=3.8; 2.10.3 Requires-Python >=3.8; 2.10.4 Requires-Python >=3.8; 2.10.5 Requires-Python >=3.8; 2.10.6 Requires-Python >=3.8; 2.11.0 Requires-Python >=3.9; 2.11.0a1 Requires-Python >=3.9; 2.11.0a2 Requires-Python >=3.9; 2.11.0b1 Requires-Python >=3.9; 2.11.0b2 Requires-Python >=3.9; 2.11.1 Requires-Python >=3.9; 2.11.2 Requires-Python >=3.9; 2.11.3 Requires-Python >=3.9; 2.11.4 Requires-Python >=3.9; 2.11.5 Requires-Python >=3.9; 2.11.6 Requires-Python >=3.9; 2.11.7 Requires-Python >=3.9; 2.12.0a1 Requires-Python >=3.9; 2.6.0 Requires-Python >=3.8; 2.6.0b1 Requires-Python >=3.8; 2.6.1 Requires-Python >=3.8; 2.6.2 Requires-Python >=3.8; 2.6.3 Requires-Python >=3.8; 2.6.4 Requires-Python >=3.8; 2.7.0 Requires-Python >=3.8; 2.7.0b1 Requires-Python >=3.8; 2.7.1 Requires-Python >=3.8; 2.7.2 Requires-Python >=3.8; 2.7.3 Requires-Python >=3.8; 2.7.4 Requires-Python >=3.8; 2.8.0 Requires-Python >=3.8; 2.8.0b1 Requires-Python >=3.8; 2.8.1 Requires-Python >=3.8; 2.8.2 Requires-Python >=3.8; 2.9.0 Requires-Python >=3.8; 2.9.0b1 Requires-Python >=3.8; 2.9.0b2 Requires-Python >=3.8; 2.9.1 Requires-Python >=3.8; 2.9.2 Requires-Python >=3.8 ERROR: Could not find a version that satisfies the requirement llama-index-core (from versions: none) ERROR: No matching distribution found for llama-index-core

pip install numpy==1.23.0 WARNING: The directory '/root/.cache/pip' or its parent directory is not owned or is not writable by the current user. The cache has been disabled. Check the permissions and owner of that directory. If executing pip with sudo, you should use sudo's -H flag. Looking in indexes: https://mirrors.aliyun.com/pypi/simple/, https://pypi.tuna.tsinghua.edu.cn/simple/, https://pypi.douban.com/simple, https://pypi.mirrors.ustc.edu.cn/simple/ ERROR: Ignored the following versions that require a different python version: 1.22.0 Requires-Python >=3.8; 1.22.1 Requires-Python >=3.8; 1.22.2 Requires-Python >=3.8; 1.22.3 Requires-Python >=3.8; 1.22.4 Requires-Python >=3.8; 1.23.0 Requires-Python >=3.8; 1.23.0rc1 Requires-Python >=3.8; 1.23.0rc2 Requires-Python >=3.8; 1.23.0rc3 Requires-Python >=3.8; 1.23.1 Requires-Python >=3.8; 1.23.2 Requires-Python >=3.8; 1.23.3 Requires-Python >=3.8; 1.23.4 Requires-Python >=3.8; 1.23.5 Requires-Python >=3.8; 1.24.0 Requires-Python >=3.8; 1.24.0rc1 Requires-Python >=3.8; 1.24.0rc2 Requires-Python >=3.8; 1.24.1 Requires-Python >=3.8; 1.24.2 Requires-Python >=3.8; 1.24.3 Requires-Python >=3.8; 1.24.4 Requires-Python >=3.8; 1.25.0 Requires-Python >=3.9; 1.25.0rc1 Requires-Python >=3.9; 1.25.1 Requires-Python >=3.9 ERROR: Could not find a version that satisfies the requirement numpy==1.23.0 (from versions: 1.3.0, 1.4.1, 1.5.0, 1.5.1, 1.6.0, 1.6.1, 1.6.2, 1.7.0, 1.7.1, 1.7.2, 1.8.0, 1.8.1, 1.8.2, 1.9.0, 1.9.1, 1.9.2, 1.9.3, 1.10.0.post2, 1.10.1, 1.10.2, 1.10.4, 1.11.0, 1.11.1, 1.11.2, 1.11.3, 1.12.0, 1.12.1, 1.13.0, 1.13.1, 1.13.3, 1.14.0, 1.14.1, 1.14.2, 1.14.3, 1.14.4, 1.14.5, 1.14.6, 1.15.0, 1.15.1, 1.15.2, 1.15.3, 1.15.4, 1.16.0, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5, 1.16.6, 1.17.0, 1.17.1, 1.17.2, 1.17.3, 1.17.4, 1.17.5, 1.18.0, 1.18.1, 1.18.2, 1.18.3, 1.18.4, 1.18.5, 1.19.0, 1.19.1, 1.19.2, 1.19.3, 1.19.4, 1.19.5, 1.20.0, 1.20.1, 1.20.2, 1.20.3, 1.21.0, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5, 1.21.6) ERROR: No matching distribution found for numpy==1.23.0 Note: you may need to restart the kernel to use updated packages.

最新推荐

recommend-type

PSO卫星轨道发生器生成所需的随机数卫星、轨道和空间站,并使用 PSO 算法选择最佳轨道。.zip

1.版本:matlab2014a/2019b/2024b 2.附赠案例数据可直接运行。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。
recommend-type

Excel表格通用模板:办公室装修预算表.xls

Excel表格通用模板:办公室装修预算表.xls
recommend-type

基于SpringBoot2.x、SpringCloud和SpringCloudAlibaba并采用前后端分离的企业级微服务多租户系统架构。并引入组件化的思想实现-original.zip

基于SpringBoot2.x、SpringCloud和SpringCloudAlibaba并采用前后端分离的企业级微服务多租户系统架构。并引入组件化的思想实现-original.zip
recommend-type

【scratch2.0少儿编程-游戏原型-动画-项目源码】迷宫游戏.zip

资源说明: 1:本资料仅用作交流学习参考,请切勿用于商业用途。更多精品资源请访问 https://blog.csdn.net/ashyyyy/article/details/146464041 2:一套精品实用scratch2.0少儿编程游戏、动画源码资源,无论是入门练手还是项目复用都超实用,省去重复开发时间,让开发少走弯路!
recommend-type

这是一个基于ssm框架的购物系统.zip

这是一个基于ssm框架的购物系统.zip
recommend-type

研究Matlab影响下的神经数值可复制性

### Matlab代码影响神经数值可复制性 #### 标题解读 标题为“matlab代码影响-neural-numerical-replicability:神经数值可复制性”,该标题暗示了研究的主题集中在Matlab代码对神经数值可复制性的影响。在神经科学研究中,数值可复制性指的是在不同计算环境下使用相同的算法与数据能够获得一致或相近的计算结果。这对于科学实验的可靠性和结果的可验证性至关重要。 #### 描述解读 描述中提到的“该项目”着重于提供工具来分析不同平台下由于数值不精确性导致的影响。项目以霍奇金-赫克斯利(Hodgkin-Huxley)型神经元组成的简单神经网络为例,这是生物物理神经建模中常见的模型,用于模拟动作电位的产生和传播。 描述中提及的`JCN_2019_v4.0_appendix_Eqs_Parameters.pdf`文件详细描述了仿真模型的参数与方程。这些内容对于理解模型的细节和确保其他研究者复制该研究是必不可少的。 该研究的实现工具选用了C/C++程序语言。这表明了研究的复杂性和对性能的高要求,因为C/C++在科学计算领域内以其高效性和灵活性而广受欢迎。 使用了Runge–Kutta四阶方法(RK4)求解常微分方程(ODE),这是一种广泛应用于求解初值问题的数值方法。RK4方法的精度和稳定性使其成为众多科学计算问题的首选。RK4方法的实现借助了Boost C++库中的`Boost.Numeric.Odeint`模块,这进一步表明项目对数值算法的实现和性能有较高要求。 #### 软件要求 为了能够运行该项目,需要满足一系列软件要求: - C/C++编译器:例如GCC,这是编译C/C++代码的重要工具。 - Boost C++库:一个强大的跨平台C++库,提供了许多标准库之外的组件,尤其是数值计算相关的部分。 - ODEint模块:用于求解常微分方程,是Boost库的一部分,已包含在项目提供的文件中。 #### 项目文件结构 从提供的文件列表中,我们可以推测出项目的文件结构包含以下几个部分: - **项目树源代码目录**:存放项目的主要源代码文件。 - `checkActualPrecision.h`:一个头文件,可能用于检测和评估实际的数值精度。 - `HH_BBT2017_allP.cpp`:源代码文件,包含用于模拟霍奇金-赫克斯利神经元网络的代码。 - `iappDist_allP.cpp` 和 `iappDist_allP.h`:源代码和头文件,可能用于实现某种算法或者数据的分布。 - `Makefile.win`:针对Windows系统的编译脚本文件,用于自动化编译过程。 - `SpikeTrain_allP.cpp` 和 `SpikeTrain_allP.h`:源代码和头文件,可能与动作电位的生成和传播相关。 - **人物目录**:可能包含项目成员的简介、联系方式或其他相关信息。 - **Matlab脚本文件**: - `图1_as.m`、`图2_as.m`、`图2_rp`:这些文件名中的"as"可能表示"assembled",而"rp"可能指"reproduction"。这些脚本文件很可能用于绘制图表、图形,以及对模拟结果进行后处理和复现实验。 #### 开源系统标签 标签“系统开源”指的是该项目作为一个开源项目被开发,意味着其源代码是公开的,任何个人或组织都可以自由获取、修改和重新分发。这对于科学计算来说尤为重要,因为开放代码库可以增进协作,加速科学发现,并确保实验结果的透明度和可验证性。 #### 总结 在理解了文件中提供的信息后,可以认识到本项目聚焦于通过提供准确的数值计算工具,来保证神经科学研究中模型仿真的可复制性。通过选择合适的编程语言和算法,利用开源的库和工具,研究者们可以确保其研究结果的精确性和可靠性。这不仅有助于神经科学领域的深入研究,还为其他需要高精度数值计算的科研领域提供了宝贵的经验和方法。
recommend-type

MySQL数据库索引失效案例分析与解决方案(索引失效大揭秘)

# 摘要 MySQL索引失效是数据库性能优化中的关键问题,直接影响查询效率与系统响应速度。本文系统分析了索引的基本机制与失效原理,包括B+树结构、执行计划解析及查询优化器的工作逻辑,深入探讨了索引失效的典型场景,如不规范SQL写法、复合索引设计不当以及统
recommend-type

TS语言

### TypeScript 简介 TypeScript 是一种由 Microsoft 开发的开源编程语言,它是 JavaScript 的超集,这意味着所有的 JavaScript 代码都是合法的 TypeScript 代码。TypeScript 扩展了 JavaScript 的语法,并通过类型注解提供编译时的静态类型检查,从而使得代码更易于维护、理解和调试。TypeScript 可以在任何操作系统上运行,并且可以编译出纯净、简洁的 JavaScript 代码,这些代码可以在任何浏览器上、Node.js 环境中,或者任何支持 ECMAScript 3(或更高版本)的 JavaScript 引
recommend-type

Leaflet.Graticule插件:创建经纬度网格刻度

标题“Leaflet.Graticule:经纬线网格”指向的是Leaflet.js的一个插件,它用于在地图上生成经纬度网格线,以辅助进行地图定位与参考。从描述中,我们可以提取到几个关键知识点: 1. Leaflet.Graticule插件的使用目的和功能:该插件的主要作用是在基于Leaflet.js库的地图上绘制经纬度网格线。这可以帮助用户在地图上直观地看到经纬度划分,对于地理信息系统(GIS)相关工作尤为重要。 2. 插件的构造函数和参数:`L.graticule(options)`是创建Graticule图层的JavaScript代码片段。其中`options`是一个对象,可以用来设置网格线的显示样式和间隔等属性。这表明了插件的灵活性,允许用户根据自己的需求调整网格线的显示。 3. interval参数的含义:`interval`参数决定了网格线的间隔大小,以度为单位。例如,若设置为20,则每20度间隔显示一条网格线;若设置为10,则每10度显示一条网格线。这一参数对于调节网格线密度至关重要。 4. style参数的作用:`style`参数用于定义网格线的样式。插件提供了自定义线的样式的能力,包括颜色、粗细等,使得开发者可以根据地图的整体风格和个人喜好来定制网格线的外观。 5. 实例化和添加到地图上的例子:提供了两种使用插件的方式。第一种是直接创建一个基本的网格层并将其添加到地图上,这种方式使用了插件的默认设置。第二种是创建一个自定义间隔的网格层,并同样将其添加到地图上。这展示了如何在不同的使用场景下灵活运用插件。 6. JavaScript标签的含义:标题中“JavaScript”这一标签强调了该插件是使用JavaScript语言开发的,它是前端技术栈中重要的部分,特别是在Web开发中扮演着核心角色。 7. 压缩包子文件的文件名称列表“Leaflet.Graticule-master”暗示了插件的项目文件结构。文件名表明,这是一个典型的GitHub仓库的命名方式,其中“master”可能代表主分支。通常,开发者可以在如GitHub这样的代码托管平台上找到该项目的源代码和文档,以便下载、安装和使用。 综上所述,可以得知,Leaflet.Graticule插件是一个专为Leaflet地图库设计的扩展工具,它允许用户添加自定义的经纬度网格线到地图上,以帮助进行地图的可视化分析。开发者可以根据特定需求通过参数化选项来定制网格线的属性,使其适应不同的应用场景。通过学习和使用该插件,可以增强地图的交互性和信息的传递效率。
recommend-type

【MySQL数据库性能提升秘籍】:揭秘性能下降幕后真凶及解决策略

# 摘要 MySQL性能问题在实际应用中普遍存在,但其表象复杂且易引发认知误区。本文系统分析了导致MySQL性能下降的核心原因,涵盖查询语句结构、数据库配置、表结构设计等多个技术层面,并结合性能监控工具与执行计划解析,提供了全面的问题诊断方法。在此基础上,文章深入探讨了索引优化、查询重写、分库分表等高级调优策略,并通过真实案例总结了可行的最佳实践