react-nodegui icon indicating copy to clipboard operation
react-nodegui copied to clipboard

Error while downloading Qode v2.1.0: Not Found

Open waltersajtos opened this issue 4 years ago • 4 comments

Describe the bug I am trying to install Qode on Linux but it can't download the right release.

To Reproduce Steps to reproduce the behavior:

  1. Download starter project
  2. Run npm i
  3. Error while setting up Qode: Error: Error while downloading Qode v2.1.0:https://github.com/nodegui/qode/releases/download/v2.1.0/qode-linux-arm64-v2.1.0.tar.gz. Not Found

Expected behavior I'm expecting qode to be installed and run the application

Desktop (please complete the following information):

  • OS: Linux
  • NodeGUI version: can't install it because of the error
  • React NodeGUI version: can't install it because of the error
  • OS Version: NAME="Ubuntu" VERSION="18.04.5 LTS (Bionic Beaver)"

Additional context npm output: https://www.codepile.net/pile/pvRd83K2

waltersajtos avatar Mar 10 '21 09:03 waltersajtos

The download link from your logs suggests you are building on an ARM platform: https://github.com/nodegui/qode/releases/download/v2.1.0/qode-linux-arm64-v2.1.0.tar.gz There is no bundle for that platform as can be seen here: https://github.com/nodegui/qode/releases/. The provided bundles cover
darwin-x64, inux-x64 and win32-x64 only.

momesana avatar Mar 16 '21 16:03 momesana

The download link from your logs suggests you are building on an ARM platform: https://github.com/nodegui/qode/releases/download/v2.1.0/qode-linux-arm64-v2.1.0.tar.gz There is no bundle for that platform as can be seen here: https://github.com/nodegui/qode/releases/. The provided bundles cover darwin-x64, inux-x64 and win32-x64 only.

Is there a possibility to add that? I'm kind of new in the linux scene so I really don't know how much work this is

waltersajtos avatar Mar 17 '21 10:03 waltersajtos

Right now qode is compiled using github actions

And github actions only support some intel chips for linux.

See the commit here: https://github.com/nodegui/qode/blob/602cb55099a7770f9869150c1b1925e9b99448c2/.github/workflows/linux.yml#L6

and the supported github actions environments here: https://github.com/actions/virtual-environments

a7ul avatar Mar 17 '21 10:03 a7ul

Right now qode is compiled using github actions

And github actions only support some intel chips for linux.

See the commit here: https://github.com/nodegui/qode/blob/602cb55099a7770f9869150c1b1925e9b99448c2/.github/workflows/linux.yml#L6

and the supported github actions environments here: https://github.com/actions/virtual-environments

Alright, that makes sense. Thanks! Is there an easy way I could compile this myself on an arm64 platform?

waltersajtos avatar Mar 17 '21 15:03 waltersajtos