Setting up Heroku CLI in WSL
Trying to setup Heroku CLI to work with WSL.
Starting by following the directions here for Ubuntu 16+:
https://devcenter.heroku.com/articles/heroku-cli
sudo snap install --classic heroku
Produces the following error:
error: cannot communicate with server: Post http://localhost/v2/snaps/heroku: dial unix /run/snapd.socket: connect: no such file or directory
Googled the error and came across this thread:
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1631514
I tried systemctl status snapd.service
, which just says the following:
System has not been booted with systemd as init system (PID 1). Can't operate.
Restart WSL and the computer and same issue.
Thought maybe snapd
wasn't installed because typing snap
or snapd
says Command '____' not found, did you mean:...
. But trying to do sudo apt-get install snapd
says that it is already the latest version.
Nope, doesn't sound like there is current support in WSL for snap
. snapd
, nor systemd
. Thankfully there is a manual install provided by Heroku, so will give that a shot.
This worked in my case:
curl https://cli-assets.heroku.com/install.sh | sh