Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

Install Angular in Ubuntu

# Pre-requisites
sudo apt-get install software-properties-common
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
sudo apt-get install nodejs

# verify the installation, view the version of Node.js and NPM
node --version / node -v, npm -v

# Install Angular
npm install -g @angular/cli

# verify the installation, check the version of Angular
# (Source:https://angular.io/cli/version)
ng --v/ ng version 
ng --version/ng version

# If NodeJs vsersion is too old
# Node.js version v13.14.0 detected.
# The Angular CLI requires a minimum Node.js version of either v14.15, or v16.10.
sudo npm install -g n
sudo n lts

Comment

angular cli install ubuntu

sudo npm install -g @angular/clisudo ng --version
Comment

install angular ubuntu

sudo npm install -g @angular/cli
Comment

PREVIOUS NEXT
Code Example
Shell :: flutter doctor --android-licenses java error 
Shell :: get the latest file in a directory powershell 
Shell :: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied) 
Shell :: checking for existing ssh keys 
Shell :: how to check installed packages in linux command 
Shell :: pm2 next /usr/bin/yarn: line 3: /bin: Is a directory 
Shell :: env var linux to uppercase lowercase 
Shell :: how to debug a specific pod when Replication controller is doing load balancing 
Shell :: bash get length of every nth row 
Shell :: docker run remove on exit 
Shell :: sudo apt-get update 
Shell :: Update flutter command. 
Shell :: show detail all changes in a git log 
Shell :: how to uninstall games on ubuntu 
Shell :: google drive linux 
Shell :: Install GDAL on AWS EC2 ubuntu instance 
Shell :: powershell find in history 
Shell :: shell count number of lines 
Shell :: bash swap two columns in a file 
Shell :: flutter run emulator command line 
Shell :: kill occupation port windows 
Shell :: get last modified date pdf online 
Shell :: install xampp ubuntu 20.04 
Shell :: how do i install tkinter on windows 7 
Shell :: update all snap packages 
Shell :: svn show revision of remote url 
Shell :: install pyqt5 designer 
Shell :: ubuntu set sudoers to use vim 
Shell :: docker run restart on boot 
Shell :: kubectl exec 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =