can any one help resolve the above issue ?
# openlane
a
can any one help resolve the above issue ?
m
my guess is that caravel_cocotb is installed in your ~/.local/bin path but that path isn't in your PATH environment variable, so the shell doesn't know where to find it
can you run these commands?
which caravel_cocotb
and
echo $PATH
if caravel_cocotb is indeed in
.local/bin
but not in
$PATH
then you can add it like this;
export PATH=~/.local/bin:$PATH
a
resolved
Thankyou
👍 1