Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install powershell using cmd windows 10

# Install powershell using cmd command line
iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI"
Comment

install powershell on windows

winget install PowerShell
Comment

how to install powershell

for Ubuntu

# Update the list of packages
sudo apt-get update
# Install pre-requisite packages.
sudo apt-get install -y wget apt-transport-https software-properties-common
# Download the Microsoft repository GPG keys
wget -q https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb
# Register the Microsoft repository GPG keys
sudo dpkg -i packages-microsoft-prod.deb
# Update the list of packages after we added packages.microsoft.com
sudo apt-get update
# Install PowerShell
sudo apt-get install -y powershell
# Start PowerShell
pwsh


for macOS
brew install --cask powershell

Comment

PREVIOUS NEXT
Code Example
Shell :: docker: Error response from daemon: pull access denied for 
Shell :: git clone only one branch 
Shell :: Error generated. /dvs/git/dirty/git-master_linux/multimedia/nvgstreamer/gst-nvarguscamera/gstnvarguscamerasrc.cpp, execute:783 (propagating) 
Shell :: why is my db.sqlite3 is not gitignore 
Shell :: ubuntu instlal kubectl 
Shell :: docker manjaro 
Shell :: git add -p 
Shell :: pytest suppress exit code 
Shell :: git set remote origin url 
Shell :: yarn start error error listen EADDRINUSE: address already in use :::8081. 
Shell :: blackeye bash 
Shell :: how to install atom on manjaro 
Shell :: change macos hostname 
Shell :: install-nodejs-and-npm 
Shell :: check docker swarm status 
Shell :: Cannot make for rpm, the following external binaries need to be installed: rpmbuild 
Shell :: linux get lines in file 
Shell :: git get project name 
Shell :: install eclipse in fedora 
Shell :: powershell convert to exe 
Shell :: recursive chown 
Shell :: How to find information about my RAM on linux 
Shell :: how to enable bluetooth on terminal 
Shell :: delete directory mac terminal 
Shell :: React Hooks Form Installation 
Shell :: grep not multiple patterns 
Shell :: git github private fatal repository not found 
Shell :: Cask adoptopenjdk8 exists in multiple taps: 
Shell :: ubuntu remove all folders but keep some 
Shell :: tar file linux 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =