Peter Bittner

Results 520 comments of Peter Bittner
trafficstars

> I wonder whether a VM with ReactOS would work for generating a Windows installer. I'm not sure how we would use a VM on a service in the cloud...

https://github.com/pypa/python-packaging-user-guide/issues/267 contains quite a few interesting links to packaging Python applications.

As soon as uploading the Linux bundle to GitHub is settled (via PR #123) we'll jump on the [CI train for macOS](https://docs.travis-ci.com/user/reference/osx), yeah! :yum:

The next great thing after getting EXE for Windows and bundles for macOS working could be [building an AppImage](https://docs.appimage.org/packaging-guide/from-source/index.html) for Linux. This is something similar to a .dmg file on...

As of now, building an application bundle on macOS (using PyInstaller) is not fully working. As an alternative, I thought, we may create a Homebrew formula. I'm currently looking at...

Just for reference, if the automatic releases don't work (they probably won't currently since the `api_key:` is set to [just a sample value](https://github.com/cool-RR/PythonTurtle/blob/master/.travis.yml#L74-L98)), here's how the [VSCodium project](https://github.com/VSCodium/vscodium/blob/master/.travis.yml#L31-L48) does automatic...

Ram, you have mentioned "Windows installer" to be the top-priority of the present. I do agree. Let's note down the current state of the union. ## Windows Installer (progress overview)...

> Let me know if that's helpful. Do you know a person that is _enthusiastic_ about programming on Windows? Windows is a messy environment for Python. I don't want to...

See https://github.com/PythonTurtle/PythonTurtle/issues/108#issuecomment-683420022 for alternative solutions to build an MSI installer (WiX, [WiX.Py](https://pypi.org/project/WiX.Py/)). We may be successful that way in combination with GitHub Actions. Does someone want to give that a...

A few hints to help you make progress: - [x] With `python3 setup.py clean bundle` you can **build all binary bundles** (PyInstaller is used). - [x] The binaries **build successful**...