ziggy1
ziggy1

Reputation: 3

Error trying to use bluemix command line

I'm trying to upload a simple python code to an app that I created on Bluemix. I'm using Bluemix CLI, but I got the following error on any bluemix command:

exec: "cf": executable file not found in %PATH%

Upvotes: 0

Views: 377

Answers (1)

Alex da Silva
Alex da Silva

Reputation: 4590

It looks like you installed the bluemix command line, but not the cf command line interface.

bluemix cli uses the cf cli internally, so you need to install cf as well.

You can find the latest version here:

https://github.com/cloudfoundry/cli/releases

Upvotes: 1

Related Questions