How to fix internal or external command errors in Netbeans?

后端 未结 1 2024
不思量自难忘°
不思量自难忘° 2021-01-25 21:55

It builds fine, but when netbeans tries to start the emulator, the following error occurs:

\'Blackberry\' is not recognized as an internal or external

相关标签:
1条回答
  • 2021-01-25 22:26

    add the path to your executable to your system path variable .

    it will look at those path while executing any executable if executable found from any of those path it OR from current dir it will execute otherwise it will throw the same error.

    For Linux you have

    PATH=$PATH:/home/user/path/to/executable
    

    for windows you will have something like ,edit it. follow this tutorial for more info alt text

    0 讨论(0)
提交回复
热议问题