tkinter window.iconbitmap函数使应用程序崩溃(由pyinstaller编译)

时间:2019-09-14 12:05:33

标签: python user-interface tkinter icons pyinstaller

我正在用Tkinter来创建软件。我正在尝试使用root.iconbitmap('Globe.ico')设置图标。当我启动代码时,它工作正常。但是在我用pyinstaller编译之后,它崩溃了。当我删除root.iconbitmap('Globe.ico')函数并编译时效果很好。下面是错误和代码:

library(data.table)
library(dplyr)
dt <- read.table(text = " familyGroup Sex
 1    601       2
 2    601       1
 3    601       2
 4    601       1
 5    601       1
 6    601       2
 7    602       2
 8    602       1
 9    602       2
10    602       1
11    602       1
12    602       1")

dt <- data.table(dt)

dt[, 
    sexLabel := dplyr::case_when(
      Sex == 1 ~ "male",
      Sex == 2 ~ "female",
      TRUE ~ "(unknown)"
    )
]

res <- dcast(
  formula = familyGroup ~ sexLabel,  
  data = dt, 
  fun.aggregate = length,
  value.var = "Sex"
)
res
#       familyGroup female male
# 1:         601      3    3
# 2:         602      2    4

1 个答案:

答案 0 :(得分:-1)

我有同样的问题。完整路径可以解决此问题。 例如)root.iconbitmap('d:\ test \ Global.ico')