Install OpenWhisk CLI on mac

2019-04-12 22:24发布

I am unable to install OpenWhisk command line for some reason. I download the CLI and double click to run it. I see a terminal window saying

[Process Complete]

But then it says

-bash: wsk: command not found

标签: openwhisk
5条回答
对你真心纯属浪费
2楼-- · 2019-04-12 22:42

You can download the binary from the below url and then use .wsk from the folder where you place this binary into. https://openwhisk.ng.bluemix.net/cli/go/download/mac/

查看更多
Root(大扎)
3楼-- · 2019-04-12 22:49

If you're using Homebrew, I added a tap so you can easily install the wsk binary from a MacOS terminal: https://github.com/shaftoe/homebrew-wsk

brew install shaftoe/wsk/wsk
查看更多
Root(大扎)
4楼-- · 2019-04-12 22:59

Try ./wsk, if that works, you can update your path: PATH = $PATH:. then just use the wsk.

查看更多
Bombasti
5楼-- · 2019-04-12 23:04

The OpenWhisk command line is not an installer but rather the binary itself. Open your Terminal.app, navigate to the folder you downloaded the binary to (like cd ~/Downloads) and use the binary from there, for example ./wsk action list.

To be able to use the binary from everywhere, you'll have to make sure its in the PATH. To achieve that, either alter your PATH to include the folder where wsk is located or copy the binary to a folder already contained in your path like /usr/local/bin.

查看更多
相关推荐>>
6楼-- · 2019-04-12 23:04
  1. Download wsk cli from here.

  2. Go to downloads folder and modify permissions for wsk file using terminal

    $ chmod +x ./wsk

  3. Move wsk to use/local/bin folder using terminal. This will add wsk to the PATH

    $ sudo mv wsk /usr/local/bin

  4. Test this using following command:

    $ wsk --help

查看更多
登录 后发表回答