Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Raku: Installation of Termbox on Windows

Tags:

raku

zef

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?)

like image 782
Arne Sommer Avatar asked Dec 05 '20 21:12

Arne Sommer


1 Answers

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.

like image 61
ugexe Avatar answered Oct 17 '22 05:10

ugexe