/bin/sh: python: command not found

解决办法:

  1. 打开 settings.json 文件
  2. 设置 code-runner.executorMap
    // code-runner setting
    "code-runner.executorMap": {
        "javascript": "node",
        "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
        "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "php": "php",
        "python": "python3 -u",
        "perl": "perl",
        "perl6": "perl6",
        "ruby": "ruby",
        "go": "go run",
        "lua": "lua",
        "groovy": "groovy",
        "powershell": "powershell -ExecutionPolicy ByPass -File",
        "bat": "cmd /c",
        "shellscript": "bash",
        "fsharp": "fsi",
        "csharp": "scriptcs",
        "vbscript": "cscript //Nologo",
        "typescript": "ts-node",
        "coffeescript": "coffee",
        "scala": "scala",
        "swift": "swift",
        "julia": "julia",
        "crystal": "crystal",
        "ocaml": "ocaml",
        "r": "Rscript",
        "applescript": "osascript",
        "clojure": "lein exec",
        "haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt",
        "rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt",
        "racket": "racket",
        "scheme": "csi -script",
        "ahk": "autohotkey",
        "autoit": "autoit3",
        "dart": "dart",
        "pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt",
        "d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt",
        "haskell": "runhaskell",
        "nim": "nim compile --verbosity:0 --hints:off --run",
        "lisp": "sbcl --script",
        "kit": "kitc --run",
        "v": "v run",
        "sass": "sass --style expanded",
        "scss": "scss --style expanded",
        "less": "cd $dir && lessc $fileName $fileNameWithoutExt.css",
        "FortranFreeForm": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "fortran-modern": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "fortran_fixed-form": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "sml": "cd $dir && sml $fileName"
     

    将 python 的解释器,由 python -u ---> python3 -u ,前提是将python3加入PATH 路径。

    "jestrunner.jestCommand": "npm run test --" Jest Runner将使用有效的Jest配置开箱即用。 如果您具有自定义设置,请使用以下选项来配置Jest Runner: jestrunner.co
    vscode中CommandNotFoundError: Your shell has not been properly configured to use ‘conda active的可能解决方法
    问题:用VScode跑python, 报错“commandpython.execSelectionInTerminal’ not found”,应该怎么解决? 已经试过重装Python、VScode和VScode的python扩展了。解决方法:1、先检查这个包是否已经存在。按住win+R,输入cmd。也就是打开cmd命令窗口。pip list #个人习惯使用这个,因为准确性高,只是需要去一个一个的看 pip search xxx #查找某个包,本人使用报错,但是该安装包已经下载 pip install
    在使用vscode运行python代码的时候一直报/bin/sh: python: not found 问题 1.查看所有的python映射 ls -l /usr/bin/python* 发现没没有/usr/bin/python的路径,这就是出错的原因。 是因为/usr/bin/python的路径被python2,3覆盖了 2.搭建路径 sudo ln -s /usr/bin/python3 /usr/bin/python 3.再次查看python映射 ls -l /usr/bin/python*
    在vscode中使用插件Code Runner时报错,导致无法运行:/bin/sh: node: command not found 出现的原因:没有找到 node解决方案:在终端中输入【which node】,找到node可执行文件的路径修改vscode设置 把node可执行的路径替换下即可
    这是由于终端没有配置对node 可以改为打开Command Palette:找到添加: 不过我们可以看到提示,这种方式已经被deprecated在command Palette找到 然后重启vscode
    原文地址:http://www.cnblogs.com/GordonWorld/archive/2012/03/19/2406225.html Linux下执行.sh脚本错误:bin/sh^M: bad interpreter: No such file or directory 同样的python文件也是,即使在scripts开头指定了运行程序! 原因是脚本是在windows系统下编写的。...
    可能由于我更改了某个环境变量,前天安装了java的环境,今天在运行vue的项目的时候,就报错 bash: npm: command not found 应该是npm的路径没有被识别。 解决:将电脑之前安装的node卸载,记得要卸载干净。之后重新安装,重启项目就可以了
    2023-07-27 14:50:15.028 | ERROR | Invalid tests path: D:\YMH\pythonProject\Httprunner\Test_Project httprunner 创建项目报错
    这个错误信息表示在创建HttpRunner项目时,指定的测试路径是无效的。可能是由于路径错误或者文件夹不存在导致的。 请确保你指定的测试路径是正确的,并且文件夹已经存在。你可以使用绝对路径或相对路径来指定测试路径。 另外,还要确保你的系统有足够的权限来创建文件夹和文件。 如果问题仍然存在,请提供详细的操作步骤和完整的错误信息,以便更好地帮助你解决问题。