There is an issue while doing npm install for @wdio/sync.

enter image description here

1

There are 1 best solutions below

0
On

@wdio/[email protected] is using a inner dependency of "fibers" npm which is causing to install the python on the machine.

fibers is using the threading for node application which was running nodejs < 13.x. After Node14.x has incorporated the threading module in core and now fibers package is depricating itself from Node14.x and not support onwards. Fibers will only work with Node <=12.

Fibers team has released a new patch as "[email protected]" which is breaking with Node<=14.x. enter image description here

To fix the issue use "[email protected]" instead of 5.0.2 for Nodejs <=14.x