Raku: Installation of Termbox on Windows

188 Views Asked by At

Installation of the Raku module «Termbox» module fails on windows:

Powershell> zef install Termbox
Failed to find dependencies: python:from<bin>.

I have installed Python (v3) on the pc, but that does not help.

Is it possible to fix this, so that the module can be installed?

(And also, will the module actually work with Powershell?)

1

There are 1 best solutions below

3
On

You can ignore a dependency via --exclude=Foo, so:

zef install Termbox --exclude=python

(there should probably be a note in that error message about this option)

Will that module actually work with PowerShell once getting past that step? I think the real question is does it actually work on Windows period, and for that I don't have an answer.