英文:
Cannot install Taichi Lang
问题
我使用Python的软件包安装程序pip
来安装Taichi语言:
pip install --upgrade taichi
但是出现了以下错误:
错误: 找不到满足要求的版本 taichi(来自版本: none)
错误: 找不到与 taichi 匹配的分发
我如何在不遇到该错误的情况下安装Taichi Lang?
英文:
I used Python's package installer pip
to install taichi lang:
pip install --upgrade taichi
But the following error occurred:
ERROR: Could not find a version that satisfies the requirement taichi (from versions: none)
ERROR: No matching distribution found for taichi
How can I install Taichi Lang without running into that error?
答案1
得分: 2
你之所以收到此错误是因为 taichi
仅支持以下版本:
要求:Python >=3.6, <3.12
你的Python版本不在所需范围内。
Taichi链接:https://pypi.org/project/taichi/
英文:
You are getting this error because taichi
only supports versions from:
Requires: Python >=3.6, <3.12
your Python does not fall in the required range.
Link to taichi: https://pypi.org/project/taichi/
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论