我在我的Win7系統上安裝了python 3.6,並試圖讓它在git bash(MINGW64)中工作,至此無濟於事。無法在git終端中運行python?
我已將安裝目錄(當然不包括.exe)添加到PATH,但沒有任何結果。
即使我直接cd
到安裝目錄,它不會看到它。
$ python
bash: python: command not found
$ echo $PATH
/c/Users/Aerovistae/bin:/mingw64/bin:/usr/local/bin:/usr/bin:/bin:/mingw64/bin:/usr/bin:/c/Users/Aerovistae/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0:/c/Program Files/Intel/WiFi/bin:/c/Program Files/Common Files/Intel/WirelessCommon:/cmd:/c/Program Files (x86)/Skype/Phone:/c/Program Files/Intel/WiFi/bin:/c/Program Files/Common Files/Intel/WirelessCommon: C:/Users/Aerovistae/AppData/Local/Programs/Python/Python36-32:/usr/bin/vendor_perl:/usr/bin/core_perl
$ cd C:/Users/Aerovistae/AppData/Local/Programs/Python/Python36-32
$ python
bash: python: command not found
$ python.exe
bash: python.exe: command not found
如果我嘗試./python
從這個目錄中,它只是到下一行,當我按下回車鍵,並允許我繼續打字,因爲它希望有更多的出於某種原因的命令。 ./python
沒有被認爲是一個完整的命令,它正在等待關閉,就好像我有一個公開報價,但沒有關閉報價。無法弄清楚原因。
我在這裏錯過了什麼?爲什麼不能運行.exe,即使我在目錄中?
旁註,爲什麼它顯示PATH
具有冒號分隔符而不是分號分隔符?
你怎麼添加Python的安裝目錄路徑? –
[Python不能在git bash的命令行中工作]的重複(https://stackoverflow.com/questions/32597209/python-not-working-in-the-command-line-of-git-bash) –