如何在Chromebook上使用Tkinter?

时间:2016-04-12 16:30:56

标签: python tkinter chromebook

是否有任何扩展程序,应用程序或在线应用程序可以让我在Chromebook上使用Tkinter?

我试图为我编写的程序制作GUI并且Tkinter看起来不错,但我使用的Cloud9并不允许使用图形。

编辑:我的Chromebook上有一个管理锁,导致我无法安装Ubuntu,这就是我需要在线应用,Chrome扩展或Chrome应用的原因。

1 个答案:

答案 0 :(得分:0)

您可以在Chromebook中使用tkinter,只需按以下步骤操作:

  1. 在Chromebook中安装Ubuntu,请点击此链接about How to Install Ubuntu on Chromebook.
  2. 安装Ubuntu之后,现在检查你是否有python。打开命令终端,键入

    python

  3. 如果您尚未安装Python。打开命令终端并键入

    sudo apt-get install python3

  4. 现在安装tkinter模块类型

    sudo apt-get install python3-tk

  5. 现在按类型从终端检查python和tkinter

    
    
    python3
    Python 3.5.1 (default, Sep 26 2013, 03:20:26)
    [GCC 4.7.3] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> from tkinter import *
    >>> root = Tk()