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.
  • 相关阅读:
    排序算法与数据结构复习总结
    Kafka知识总结及面试题
    深入理解Redis系列之事务
    深入理解Redis系列之持久化
    基于数据库、redis和zookeeper实现的分布式锁
    深入理解MySQL系列之优化
    Mysql-主从复制(Docker)
    Mysql-GTID主从复制
    Ansible基础
    Nginx + php-fpm源码编译
  • 原文地址:https://www.cnblogs.com/spaceapp/p/10794508.html
Copyright © 2011-2022 走看看