Replit python turtle output screen just stuck with background images, and not going away, and replit is not running any new. Need help

Bug description:
The replit screen is just stuck with these background and character images, and it is not going away, running a new file path, and is not working, showing anything new, also it won’t run any files. This a major glitch and I need help to fix this ASAP, I can’t even work in this workspace at all.

Screenshot(s)/Screen Recording:

Browser/OS/Device: Version 118.0.5993.71 (Official Build) (64-bit) (Windows NT 10.0; Win64; x64)

Replit Profile: https://replit.com/@ShaileshMaddik1

Hey @ShaileshMaddik1!

Most likely, the characters are displayed due to the fact that when you press the Run button, it starts main.py, in which the characters are drawn.

Instructions for launching another file (in your case 1.1.9V3.py ):
Just click the next to “Files” then click “Show hidden files”. Next click on the .replit file and finally you can change the entrypoint to whatever file you want to run.

Images

Dots

Show hidden files

edited

You should also see the docs on how to configure a Repl: https://docs.replit.com/programming-ide/configuring-repl

And if you want to run the last edited file, take a look at this post:

Hi there KAlexK

I have the .replit file entry and everything correctly set. The screen is not updating at all, it is a glitch that many other people I know are experiencing the same issue, and their previous set of background pictures from yesterday are just on the screen… I have ran kill 1 in shell and it works by giving the latest file path, but whenever I hit the run button, it does not update the output screen at all, and I need to run kill 1 to update the screen, so is there a way to fix this. Thank you so much.

@KAlexK Thank you for helping me with this issue.

Also @KAlexK, sometimes when I run the python files, I get some errors regarding my .replit file

.replit file config

run = ["python3", "driver.py"]
language = "python3"
# Run a certain file's code
# entrypoint = "folder_name/file_name"
entrypoint = "1.1.9/1.1.9V3.py"

hidden = ["venv", ".config", "**/__pycache__", "**/.mypy_cache", "**/*.pyc", "driver.py"]

audio = true

[nix]
channel = "stable-21_11"

[languages.python3]
pattern = "**/*.py"
syntax = "python"

  [languages.python3.languageServer]
  start = ["pylsp"]

[interpreter]
command = [
  "python3",
  "driver.py"
]

[env]
VIRTUAL_ENV = "/home/runner/${REPL_SLUG}/venv"
PATH = "${VIRTUAL_ENV}/bin"
PYTHONPATH="${VIRTUAL_ENV}/lib/python3.8/site-packages"
REPLIT_POETRY_PYPI_REPOSITORY="https://package-proxy.replit.com/pypi/"

[debugger]
support = true

  [debugger.interactive]
  transport = "localhost:0"
  startCommand = ["dap-python", "main.py"]

    [debugger.interactive.integratedAdapter]
    dapTcpAddress = "localhost:0"
  
    [debugger.interactive.initializeMessage]
    command = "initialize"
    type = "request"

      [debugger.interactive.initializeMessage.arguments]
      adapterID = "debugpy"
      clientID = "replit"
      clientName = "replit.com"
      columnsStartAt1 = true
      linesStartAt1 = true
      locale = "en-us"
      pathFormat = "path"
      supportsInvalidatedEvent = true
      supportsProgressReporting = true
      supportsRunInTerminalRequest = true
      supportsVariablePaging = true
      supportsVariableType = true
  
    [debugger.interactive.launchMessage]
    command = "attach"
    type = "request"

      [debugger.interactive.launchMessage.arguments]
      logging = {}

[packager]
language = "python3"
ignoredPackages = ["unit_tests"]

  [packager.features]
  enabledForHosting = false
  packageSearch = true
  guessImports = true