Reputation: 3
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
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