Is there any way to use Tkinter with Google Colaboratory?

前端 未结 2 1654
长情又很酷
长情又很酷 2021-01-20 18:10

I have a code where I\'m trying out different Tkinter widgets, but Colab sends back an error saying that there\'s no display name or variable. The exact error message looks

2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-20 18:47

    No.

    From the intro to google colab:

    Colab notebooks execute code on Google's cloud servers

    Servers generally don't even have a display. And even if they had, you wouldn't see it. You will have to run Python on your desktop or laptop to use tkinter.

    Additionally, the colab environment is a form of IPython notebook, which is not really a standard Python environment. I would not recommend trying to run tkinter programs from an IPython notebook even if you have IPython running locally.

提交回复
热议问题