我正在使用 WSL2、Ubuntu 20.04 並運行 VSCode。我在 Windows 上的 VSCode 和 XAMPP 中使用 Code Runner 擴充功能
我在 Windows 環境變數中設定了 php.exe 的路徑。
我在程式碼執行器的 VSCode settings.json 中有以下內容
"code-runner.executorMap": { "javascript": "node", "php": "C:\xampp\php\php.exe", "python": "python", "perl": "perl", "ruby": "C:\Ruby23-x64\bin\ruby.exe", "go": "go run", "html": "\"C:\Program Files\Mozilla Firefox\firefox.exe\"", "java": "cd $dir && javac $fileName && java $fileNameWithoutExt", "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", },
我在編輯器中有一個名為index.php的程式。我在 VSCode 編輯器中右鍵單擊選擇“運行代碼”
在 VSCode 終端機的輸出視窗中,我收到以下錯誤訊息:
[Running] C:\xampp\php\php.exe "/home/johnr/xproj/index.php" /bin/sh: 1: C:xamppphpphp.exe: not found [Done] exited with code=127 in 0.039 seconds
我根據 Google 搜尋結果嘗試了各種配置更改,但沒有任何改變此錯誤訊息。
除非我將 sh dash 更改為 sh bash 並收到此訊息
[Running] C:\xampp\php\php.exe "/home/johnr/xproj/index.php" /bin/sh: C:xamppphpphp.exe: not found [Done] exited with code=127 in 0.039 seconds
唯一的差異是 1: 在 /bin/sh: 之後不存在
我認為 WSL 需要類別 Unix 路徑,因此例如您的 php 路徑應該是
"php": "/mnt/c/xampp/php/php.exe",
#而不是
"php": "C:\\xampp\\php\\php.exe",
#同樣的情況可能也適用於 ruby。