MacOS - zsh - local & global installations not working #703
-
My I see there is some stuff in the readme about using shims, but I thought it's better not to use these ( Full
|
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 5 replies
-
This works!
So, I think there was some issue or user error with the homebrew setup. |
Beta Was this translation helpful? Give feedback.
-
when you install rtx via brew, rtx binary will install to |
Beta Was this translation helpful? Give feedback.
-
does |
Beta Was this translation helpful? Give feedback.
-
if for different shell , |
Beta Was this translation helpful? Give feedback.
-
@jdxcode I suggest |
Beta Was this translation helpful? Give feedback.
-
I also encountered this problem, and I wasted some time before finding this thread. I must admit that the thought of trying a different manager crossed my mind. I believe it would be worthwhile to link this thread in the quickstart guide. Maybe it's better to simply change the quickstart commands from: echo 'eval "$(~/bin/rtx activate bash)"' >> ~/.bashrc
echo 'eval "$(~/bin/rtx activate zsh)"' >> ~/.zshrc
echo '~/bin/rtx activate fish | source' >> ~/.config/fish/config.fish to: echo 'eval "$(rtx activate)"' >> ~/.bashrc
echo 'eval "$(rtx activate)"' >> ~/.zshrc
echo 'rtx activate | source' >> ~/.config/fish/config.fish Wouldn't that possibly solve most of these types of issues? I personally on |
Beta Was this translation helpful? Give feedback.
if
rtx
is in your path, and you're using bash, justeval "$(rtx activate bash)
is enough. ifrtx
not in your path, you have to use absolute path.for different shell ,
rtx activate SHELL_TYPE
generates different output.