Recast • Make your old extensions compatible with Kodular Fenix

I don’t know, honestly. And if you want me to understand what’s wrong, you need to help me and provide more information. :slightly_smiling_face:

1 Like

I don’t know about it… how to run what to do… can you send me screenshot for running or any video

Open PowerShell , type or paste echo $env:PATH , copy output, paste it, here

image

3 Likes

There’s an extra ; in there. To fix it, paste the below script in PowerShell and press enter:

$Path = "$Env:Path".replace(';;', ';')
[Environment]::SetEnvironmentVariable('Path', "$Path")
$Env:Path = "$Path"

Finally, run recast --help to check if it’s working.

2 Likes

This post was flagged by the community and is temporarily hidden.