Search This Blog

Showing posts with label HeroKu CLI. Show all posts
Showing posts with label HeroKu CLI. Show all posts

Tuesday, 26 May 2020

installing Heroku CLI on windows Subsystem for Linux

One of my colleagues just told me that he couldn't install the "Heroku CLI" on his WSL (Windows Subsytem for Linux)

The normal command is as below:
sudo snap install --classic heroku

I tried it on my WSL and I saw that the below error message:

Interacting with snapd is not yet supported on Windows Subsystem for Linux.
This command has been left available for documentation purposes only.

obviousely the currently "snap" is not supported on WSL yet!
but if I run the below command, it will do the same job:

curl https://cli-assets.heroku.com/install.sh | sh

Problem with installing "Cloud Foundry" CLI on MacOS!

It's a while I'm working on a government project which will deploy into a government platform as a service that is called GovPaaS.  ...