haskell - threadscope installed via cabal, but cannot be called from terminal -
hi i've installed threadscope cabal, yet cannot call terminal (i.e. -bash: threadscope: command not found) how terminal see threadscope while can see other cabal installations.
assuming using unix-like system linux or mac:
this because cabal executable directory not part of path. can either:
cabal exec threadscopeadd
~/.cabal/bin$path. example if using bash add following line~/.bashrc:export path=$path:~/.cabal/binor append
:~/.cabal/binsuch line may in place.
Comments
Post a Comment