Home > other >  Changing shell from /bin/bash to /bin/zsh disappears programming tools?
Changing shell from /bin/bash to /bin/zsh disappears programming tools?

Time:01-16

I became very interested in Linux and wanted to customize my terminal with ZSH and powerlevel10k, but after changing and logging out, the programming tools disappears. I tried very hard to understand the reason but it did not work. I am not very familiar with the $PATH command and I do not know if it works or not. Thanks for your help. image link => https://i.stack.imgur.com/BLeLe.jpg

CodePudding user response:

Changing default shell to ZSH can help first find the path of your ZSh shell.

type -a zsh

then change it

chsh -s /bin/zsh 

now log out and log in again. One can close the Terminal app and reopen it.

CodePudding user response:

After digging, I finally realized that the files that were installed with SNAP are not displayed. When I installed the file in Deb format, it became known.

  •  Tags:  
  • Related