Appveyor 上的 Kivy PyInstaller

Posted

技术标签:

【中文标题】Appveyor 上的 Kivy PyInstaller【英文标题】:Kivy PyInstaller on Appveyor 【发布时间】:2017-08-23 04:10:13 【问题描述】:

我想在 Appveyor 上使用 PyInstaller 为我的 Kivy 应用程序构建可执行文件。我的构建在我自己的计算机上运行,​​但在 Appveyor 构建中我收到以下消息:

OpenGL version detected: 1.1
Version: b'1.1.0'
Vendor: b'Microsoft Corporation'
Renderer: b'GDI Generic'
Try upgrading your graphics drivers and/or your graphics hardware in case of problems.
The application will leave now.

我正在使用https://kivy.org/docs/guide/packaging-windows.html 中所述的默认 PyInstaller 配置。

appveyor.yml如下:

image: Visual Studio 2015

environment:
  matrix:
    - PYTHON: "C:\\Python34"
      PYTHON_VERSION: "3.4.x" # currently 3.4.3
      PYTHON_ARCH: "32"

    - PYTHON: "C:\\Python34-x64"
      PYTHON_VERSION: "3.4.x" # currently 3.4.3
      PYTHON_ARCH: "64"

install:
  # Install Python (from the official .msi of http://python.org) and pip when
  # not already installed.
  - ps: if (-not(Test-Path($env:PYTHON)))  & appveyor\install.ps1 

  - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"

  # Check that we have the expected version and architecture for Python
  - "python --version"
  - "python -c \"import struct; print(struct.calcsize('P') * 8)\""

  - "pip install --disable-pip-version-check --user --upgrade pip"

  # Kivy and pyinstaller included
  - "%CMD_IN_ENV% pip install -r requirements.txt"

  # Saw somewhere on the internet, doesn't work with it nor without it.
  - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-desktop.ps1'))



build_script:
  - "%CMD_IN_ENV% python -m PyInstaller myapp.spec"


artifacts:
  - path: dist\*

在我看来,它可以有两种方式: * 以某种方式阻止 kivy pyinstaller hook 使用 OpenGL * 配置 Appveyor 使用 OpenGL

感谢您的所有建议!

【问题讨论】:

实际上效果很好。我切换到python35Kivy 1.9.2-dev0kivy.deps.angle。 OpenGL 2.0 被识别并且构建通过了。谢谢。 作为答案发表 ^^ 【参考方案1】:

正如@ilyaf 所说,但有一件事可能会对您有所帮助 - 尝试安装 kivy.deps.angle 并将其打包 + 制作您的应用程序 use the angle。我不太确定它是否会有所帮助,因为没有 GPU,但angle 将 OpenGL 调用转换为 Appveyor 似乎拥有的 DirectX。值得一试,虽然我担心即使使用angle 也会不行。

【讨论】:

【参考方案2】:

恐怕这是不可能的,因为构建发生在没有物理 GPU 的 Hyper-V 虚拟机中......

【讨论】:

以上是关于Appveyor 上的 Kivy PyInstaller的主要内容,如果未能解决你的问题,请参考以下文章

持续集成配置之Nuget

appveyor build failed --

AppVeyor Octopack - GetAssemblyVersion 失败

设置AppVeyor的C ++语言标准

Appveyor: FIND: Parameter format not correct

Appveyor dotnet 发布使用 net core 1.0.0 失败