gpt4 book ai didi

python - 使用 Python 的 Glitch.com

转载 作者:行者123 更新时间:2023-12-04 13:00:10 33 4
gpt4 key购买 nike

如何在 Glitch.com 上创建和使用 Python 3.7?
我创建了一个项目。默认的 Python 版本是旧的。

我使用这些文件在 Glitch 上运行 Python:

  • 主文件
    import discord
    from discord.ext import commands
    bot = commands.Bot(command_prefix="bot.")
    @bot.event
    async def on_ready():
    print("Bot ready!")
    bot.run("TOKEN_HERE")

  • 启动文件
    python main.py

  • 要求.txt
    discord.py==1.2.3


  • 最佳答案

    好的,上面的答案是正确的,是它的延伸。
    使用 python3 main.py运行你的代码。glitch接受使用 start.sh文件,运行启动脚本。
    如果您正在使用某些软件包,则需要安装它们,我们通常使用 pip 来安装它们。 . 但是 , 故障 pip运行时将这些包安装在 python 2 中目录。所以,即使在使用 python3 之后在 start.sh在 Glitch 项目中,它不起作用。
    这是解决方法。
    使用 Python 安装软件包。
    以下代码将执行:

    python3 -m pip install -U pip
    python3 -m pip install -r requirements.txt
    python3 main.py

    start.sh 中添加以上代码
  • 我们首先使用python3升级pip(我们通常这样做)
  • 安装 requirements.txt 中的所有软件包(别忘了 s 在这里,我做到了:|)
  • 启动 main.py

  • 另外,如果你想单独安装一个包,使用 python3 -m pip install <package_name> .
    玩得开心。您的项目刚刚成功启动。

    关于python - 使用 Python 的 Glitch.com,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59370377/

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