如何解决此Kivy标签错误?

时间:2019-12-22 19:45:04

标签: python kivy

我在从kivy.uix.label导入Label的那一行上遇到了这个错误(这是我以前从未见过的),除了,IDE给我一个错误,实际上是“ 1”,并且终端告诉我Label不存在。

The IDE error

The terminal, it basically says that the module Label cannot be found

1 个答案:

答案 0 :(得分:1)

好,所以我最终解决了它,这就是我使用Windows 10的Visual Studio 2019所做的

要解决标签问题,您必须通过运行以下命令安装Pillow:

package utils

// DBConnect connection to PG database
func DBConnect() *sql.DB {
    // env := LoadEnvVariables()

    connStr := "postgres://user:password@127.0.0.1/lybl?sslmode=disable"
    fmt.Println(connStr)

    db, err := sql.Open("postgres", connStr)
    if err != nil {
        log.Fatal(err)
        return nil
    }

    return db
}

要解决我后来遇到的No Windows Provider问题,您必须运行:

pip install Pillow