zoukankan      html  css  js  c++  java
  • centos 安装 tkinter(不只用来做界面,在pylot中也使用)

    Python2

    [root@binger ~]# yum -y install tkinter  tcl-devel tk-devel
    [root@binger ~]# rpm -qa | grep ^tk
    tkinter-2.7.5-77.el7_6.x86_64
    tk-devel-8.5.13-6.el7.x86_64
    tk-8.5.13-6.el7.x86_64
    [root@binger ~]# rpm -qa | grep ^tcl
    tcl-8.5.13-8.el7.x86_64
    tcl-devel-8.5.13-8.el7.x86_64
    [root@binger ~]# find /usr -name *tkinter.so
    [root@binger ~]#

    Python36

    [root@binger ~]# yum -y install python36-tkinter  tcl-devel tk-devel
    [root@binger ~]# rpm -qa | grep ^tk
    tkinter-2.7.5-77.el7_6.x86_64
    tk-devel-8.5.13-6.el7.x86_64
    tk-8.5.13-6.el7.x86_64
    [root@binger ~]# rpm -qa | grep ^tcl
    tcl-8.5.13-8.el7.x86_64
    tcl-devel-8.5.13-8.el7.x86_64
    [root@binger ~]# find /usr -name *tkinter.so
    [root@binger ~]#

    # 区别:Python3.6与2 python36-tkinter和 tkinter

    # 其他版本可通过:yum search thinter

    [root@binger ~]# yum search tkinter
    Loaded plugins: fastestmirror, protectbase
    Loading mirror speeds from cached hostfile
     * base: mirrors.neusoft.edu.cn
     * epel: mirror.premi.st
     * extras: mirrors.163.com
     * updates: mirrors.zju.edu.cn
    0 packages excluded due to repository protections
    ============================================================================================================================ N/S matched: tkinter ============================================================================================================================
    python34-tkinter.x86_64 : A GUI toolkit for Python 3
    python36-tkinter.x86_64 : A GUI toolkit for Python
    tkinter.x86_64 : A graphical user interface for the Python scripting language
    
      Name and summary matches only, use "search all" for everything.
  • 相关阅读:
    CKeditor3.6.2 配置与精简
    CKEditor与CKFinder整合并实现文件上传功能
    实体关联关系映射:
    status pending状态
    wx:for
    小程序
    获取指定控件的值
    报表
    dataGridView 设置
    SQLite 的使用
  • 原文地址:https://www.cnblogs.com/spaceapp/p/10794508.html
Copyright © 2011-2022 走看看