Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

command to install fish shell

sudo apt install fish
chsh -s /usr/bin/fish
# logout/login

# To switch back to bash
chsh -s /bin/bash
# logout/login
Comment

install node on fish-shell

# Follow This to install nvm for fish-shell
fisher install jorgebucaran/nvm.fish ## This will install fish package manager Fisher
# Then install Nvm package made for fish shell https://github.com/jorgebucaran/nvm.fish
fisher install jorgebucaran/nvm.fish
# Then restart or write this
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"

## Install Node.js
nvm list-remote # to see all available node.js versions remotely
# Install particular Verson . You can install as many versions as you want as use one
nvm insall <version> ## example : nvm install 17.3.0
# use nvm list to list local installed versions and then use one version installed version
nvm use <version> ## example  : nvm use 17.3.0
# Now node.js is installed and using successfully
Comment

PREVIOUS NEXT
Code Example
Shell :: libgthread-2.0.so.0: cannot open shared object file: No such file or directory 
Shell :: check services running on port linux 
Shell :: enable snap in linux mint 
Shell :: unzip centos 
Shell :: disable cloud-init ubuntu 
Shell :: debian install dig 
Shell :: uninstall react-router 
Shell :: install Qt5 ubuntu 20.04 
Shell :: add spacer to dock macos 
Shell :: change git url 
Shell :: how to remove heroku from git 
Shell :: install nasm ubuntu 
Shell :: set username git 
Shell :: uninstall zoom command line 
Shell :: linux screen kill attached session 
Shell :: linux loop over all arguments one by one 
Shell :: kill vlc in linux 
Shell :: git config ssl verify false 
Shell :: restart httpd centos 
Shell :: check battery health on ubuntu 
Shell :: how to make new user linux termil 
Shell :: WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! 
Shell :: kill all gazebo processes 
Shell :: pandas pip install 
Shell :: hash sum mismatch ubuntu 20.04 
Shell :: gulp cli 
Shell :: check compatible ubuntu nvidia driver 18.04 
Shell :: git remove unpushed commit 
Shell :: ubuntu delete all files with extension 
Shell :: linux give all files an extension 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =