gpt4 book ai didi

python - Arcade 库需要 Python 3.6 或更高版本

转载 作者:行者123 更新时间:2023-12-01 08:41:23 25 4
gpt4 key购买 nike

尝试运行an example of a python arcade library game .

将代码粘贴到 Pycharm:“导入 Arcade”行失败,因为“Arcade 库需要 Python 3.6 或更高版本”。 。使用 python3.7 解释器重试,现在它显示“没有名为 arcade 的模块”,但 Pycharm 建议安装该包。输入我的 sudo 密码后,它说

'pip install arcade'

失败并“确保您使用为位于'/usr/local/bin/python3.7'的Python解释器安装的正确版本的'pip'”

我打开终端,尝试:

sudo pip3.7 install arcade

安装失败的原因是:

Could not fetch URL https://pypi.org/simple/arcade/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/arcade/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
Could not find a version that satisfies the requirement arcade (from versions: )
No matching distribution found for arcade
You are using pip version 10.0.1, however version 18.1 is available. You should consider upgrading via the 'pip install --upgrade pip' command.

查找如何升级pip,找到this thread ,尝试每个答案,但由于相同的原因,它们都不起作用:SSL 模块不可用。

我还必须回到 PyCharm 中的 3.4 解释器,因为 numpy 也无法使用。我是否坚持使用当前版本的 python (3.4.3)?我需要做什么才能安装最新的模块?

操作系统是 Linux Mint 17.3在终端中,输入“python -V”时默认为2.7.6,输入“python3 -V”时默认为3.4.3,因此需要指定“python3.7”。 pip 也一样吗? (只写pip3.7 instest还是pip3?)

最佳答案

您可以通过目标 python 可执行文件调用它来确保加载正确的 pip,如下所示:

python3.7 -m pip install arcade

如果错误仍然存​​在,您可以尝试下载二进制文件并配置、make、make altinstall(您可以找到指南 here )。关键是不要尝试通过包管理器安装 python,因为 14.04、16.04、17.03 的存储库没有指向最新的 3.x 版本的 python。

当您拥有 python 3.x 的工作版本时,您可以在 PyCharm 中创建虚拟环境(如 Arun Otaku 建议的那样)。

关于python - Arcade 库需要 Python 3.6 或更高版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53475978/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com