Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

version manager

# 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 :: git diff 
Shell :: docker compose volumes 
Shell :: poetry requirements 
Shell :: how to view the list of your environments in your terminal or Anaconda prompt 
Shell :: linux find directory and file 
Shell :: give sudo permission to vim ubuntu 
Shell :: how to delete an issue on github 
Shell :: linux extract txz 
Shell :: wsl distro 
Shell :: how to change the apache port in xampp 
Shell :: git newly created branch not showing 
Shell :: linux command to copy file 
Shell :: get latitude and longitude based on user entered place android 
Shell :: check memcached status 
Shell :: neovim open file 
Shell :: mac m1 linux install 
Shell :: W: GPG error: http://packages.ros.org/ros/ubuntu xenial InRelease: The following signatures were invalid: KEYEXPIRED 1622248854 
Shell :: how to install node version to current folder only 
Shell :: Invariant Violation: requireNativeComponent: "RNCWebView" was not found in the UIManager. 
Shell :: wget recursive ftp 
Shell :: sshfs lxc 
Shell :: installation caffe 
Shell :: Using ffmpeg to split video files by size 
Shell :: monit network request in ubuntu 
Shell :: reart admin 
Shell :: kali linux image 
Shell :: get rasbien version 
Shell :: /etc/apt/sources.list 
Shell :: install new kernel ubuntu 20.04 
Shell :: git find largest files in repo 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =