280

Python will not run in git bash (Windows). When I type python in the command line, it takes me to a blank line without saying that it has entered python 2.7.10 like its does in Powershell. It doesn't give me an error message, but python just doesn't run.

I have already made sure the environmental variables in PATH included c:\python27. What else can I check?


A session wherein this issue occurs looks like the following:

user@hostname MINGW64 ~
$ type python
python is /c/Python27/python

user@hostname MINGW64 ~
$ python

...sitting there without returning to the prompt.

wasabigeek
  • 2,263
  • 1
  • 18
  • 29
Caroline Morris
  • 2,801
  • 3
  • 8
  • 5
  • 2
    "Nothing happens"? You don't even get an error? (Which is to say: If you get an error message, that should be part of your question). – Charles Duffy Sep 15 '15 at 23:23
  • @recursive, bash does indeed respect PATH. (It has its own version of that variable, though). – Charles Duffy Sep 15 '15 at 23:24
  • 13
    I do not get an error message when I type in python. It just takes me to a blank line, but doesn't show that python is actual running – Caroline Morris Sep 16 '15 at 00:29
  • 4
    @CharlesDuff, she made it clear, Charles, no any error messages. Bash just freezes. Freezing a terminal is the error message. – Green Jun 08 '16 at 06:22
  • 1
    @Green, as should be obvious by my answer, that's no longer a point lacking clarity -- and hasn't been for the better part of a year. Moreover, the question wasn't as clear on this point as it is now until I edited it to *make* it unambiguous on the point following the OP's comment earlier in this thread; check the history. – Charles Duffy Jun 08 '16 at 15:01
  • 3
    similar question here: https://stackoverflow.com/questions/13588454/invoking-python-under-cygwin-on-windows-hangs using `python -i` solves it. – nngeek Mar 27 '20 at 01:26

20 Answers20

427

Temporary solution

Just enter this in your git shell on windows - > alias python='winpty python.exe', that is all and you are going to have alias to the python executable. This alias will be valid for the duration of the shell session.

winpty is a Windows software package providing an interface similar to a Unix pty-master for communicating with Windows console programs.

Permanent solution

Add the command to your .bashrc in the users home directory.

Using CLI

This can be accomplished from git bash like so:

echo "alias python='winpty python.exe'" >> ~/.bashrc

which will create .bashrc in the current users home directory if the file doesn't exist or append the alias to the end of .bashrc if it does.

Using a text editor

Alternatively, you could first create a .bashrc. Depending on your file manager, this may be easier to accomplish in git bash like so:

cd ~
touch .bashrc

At which point you can open .bashrc in your prefered text editor and add it there.

To apply the change, either use the command source .bashrc or restart the shell.

CervEd
  • 702
  • 6
  • 14
Vitaliy Terziev
  • 5,298
  • 3
  • 15
  • 24
  • 6
    Note: You will have to use the Python function `quit()` in order to escape out of the interpreter. – anishpatel Nov 01 '16 at 01:59
  • 6
    You can also use (the windows standard) `^Z` (ctrl-Z) + `return` to exit. – Emil Styrke Jan 31 '17 at 09:13
  • 7
    Also if you would like to set the alias to a 'different' python than that from windows you can set a fully qualified path to it using the following syntax `alias python='winpty /c/Python27/python.exe'` – ScottMcC Aug 03 '17 at 01:45
  • 1
    `winpty python.exe` throws `Error 0x2 starting python.exe` for me, but `winpty python` works. – alex Oct 18 '17 at 14:39
  • 3
    You can also run `source .bashrc` instead of restarting the shell. – Jonathan Sudiaman Feb 06 '18 at 13:53
  • @Sudicode, there are a number of ways you can achieve the same. This is just suggested edit from another user. Feel free to add, suggest edits to better the answer. – Vitaliy Terziev Feb 06 '18 at 14:00
  • 1
    this worked for me, but is there a way to fix the same problem with `pip install X`? making a similar alias for pip.exe did not work. – wrapperapps Apr 09 '18 at 17:23
  • @wrapperapps hm, I've checked my bashrc again and my path etc. pip is working fine w/o any other modifications – Vitaliy Terziev Apr 09 '18 at 21:18
  • @VitaliyTerziev I eventually figured it out using https://stackoverflow.com/a/33919101/1898523 and "--no-cache-dir" flag. – wrapperapps Apr 10 '18 at 12:58
  • This works for `ipython.exe` as well. (I'm not sure why one of my Windows computers requires the `winpty` command and the other does not.) – Steven C. Howell Apr 10 '18 at 17:28
  • 1
    I had the same problem and this solution works for me. Why exactly is it necessary, though? What's going on under the hood? – Karl Knechtel Oct 13 '19 at 23:59
  • 1
    @KarlKnechtel, I think Charles Duffy's answer has more information about the bug which is causing this and possible workarounds. If I remember correctly my suggestion was a derivative based on the details in his answer. – Vitaliy Terziev Oct 14 '19 at 10:43
  • 2
    Git bash should really explain the effects of installing minty console better. Perhaps even link to this answer :) – Or Ohev-Zion Dec 06 '19 at 15:57
95

I don't see next option in a list of answers, but I can get interactive prompt with "-i" key:

$ python -i
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55)
Type "help", "copyright", "credits" or "license" for more information.
>>> 
vav
  • 4,141
  • 1
  • 16
  • 36
  • -i argument: When a script is passed as first argument or the -c option is used, enter interactive mode after executing the script or the command, even when sys.stdin does not appear to be a terminal. The PYTHONSTARTUP file is not read. https://docs.python.org/3/using/cmdline.html#cmdoption-i – Mercury May 15 '19 at 07:54
  • Is this more costly than **alias python='winpty python.exe'** ? – PYK Feb 17 '20 at 19:51
  • 2
    this is the option with zero configuration effort that works on any computer. – vav Feb 20 '20 at 16:22
64

This is a known bug in MSys2, which provides the terminal used by Git Bash. You can work around it by running a Python build without ncurses support, or by using WinPTY, used as follows:

To run a Windows console program in mintty or Cygwin sshd, prepend console.exe to the command-line:

$ build/console.exe c:/Python27/python.exe
Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> 10 + 20
30
>>> exit()

The prebuilt binaries for msys are likely to work with Git Bash. (Do check whether there's a newer version if significant time has passed since this answer was posted!).


As of Git for Windows 2.7.1, also try using winpty c:Python27/python.exe; WinPTY may be included out-of-the-box.

Charles Duffy
  • 235,655
  • 34
  • 305
  • 356
  • 2
    Can you please, explain the `build/console.exe c:/Python27/python.exe` - is this should be run in GitMsys console or any other way? – 0leg Jan 31 '16 at 21:01
  • @h3d0, yes, inside the terminal. Of course, this assumes that `build` is the directory that `console.exe` is in; update the path appropriately depending on where/how you actually installed it. – Charles Duffy Jan 31 '16 at 23:08
  • Searched the whole system for `console.exe` - no occurrences. Is this something to be installed additional? – 0leg Feb 01 '16 at 07:39
  • 1
    @h3d0 Yes, it is additional software; my answer includes a link. – Charles Duffy Feb 01 '16 at 14:00
  • 9
    I think you can use it as `winpty c:/Python27/python.exe`, without doing anything additional. The utility winpty.exe can be found at Git\usr\bin. I'm using Git for Windows v2.7.1 – Xun Yang Feb 08 '16 at 22:22
  • 1
    @XunYang, ...winpty is bundled in now? Nice! Edited appropriately. – Charles Duffy Feb 08 '16 at 22:37
  • Python now starts, but I can't type brackets ([]) for some reason. It works in git bash outside of python, as well as in python when I run it from cmd. – Godsmith Sep 27 '16 at 08:40
  • For people still running into this answer - you can `source .bashrc` after writing in the .bashrc file instead of restarting the shell. – musicman523 Jun 07 '17 at 13:30
  • or add this alias to bashrc: alias bashrc='vim ~/.bashrc; source ~/.bashrc' – Vatsal Jan 08 '18 at 10:30
53

I am windows 10 user and I have installed GIT in my system by just accepting the defaults.

After reading the above answers, I got 2 solutions for my own and these 2 solutions perfectly works on GIT bash and facilitates me to execute Python statements on GIT bash.

I am attaching 3 images of my GIT bash terminal. 1st with problem and the latter 2 as solutions.

PROBLEM - Cursor is just waiting after hitting python command

enter image description here

SOLUTION 1

Execute winpty <path-to-python-installation-dir>/python.exe on GIT bash terminal.

Note: Do not use C:\Users\Admin like path style in GIT bash, instead use /C/Users/Admin.

In my case, I executed winpty /C/Users/SJV/Anaconda2/python.exe command on GIT bash

Or if you do not know your username then execute winpty /C/Users/$USERNAME/Anaconda2/python.exe

enter image description here

SOLUTION 2

Just type python -i and that is it.

enter image description here

Thanks.

hygull
  • 7,072
  • 2
  • 35
  • 42
  • 2
    I found that `winpty` will also work with the Windows Python Launcher, so all you need is e.g. `alias py='winpty py'` in your .bashrc and then go back to normal. – Karl Knechtel Oct 14 '19 at 00:03
  • Yeah, that's upto you, how do you manage things to make your life better. – hygull Oct 14 '19 at 17:54
13

Try python -i instead of python, it's a cursor thing.

James
  • 25,427
  • 16
  • 78
  • 101
9

In addition to the answer of @Charles-Duffy, you can use winpty directly without installing/downloading anything extra. Just run winpty c:/Python27/python.exe. The utility winpty.exe can be found at Git\usr\bin. I'm using Git for Windows v2.7.1

The prebuilt binaries from @Charles-Duffy is version 0.1.1(according to the file name), while the included one is 0.2.2

Xun Yang
  • 3,707
  • 7
  • 33
  • 54
9

Git Bash Workaround- Launch Python 2 & Python 3 with aliases

HI. This is (for me) the best solution to run both Python (Python 2.7 and Python 3.x) directly from Git Bash on Win 10 => adding aliases into the aliases file that Git Bash uses for.

Git Bash aliases file is aliases.sh. It is located in:

C:\path where you installed Git\etc\profile.d\aliases.sh

1) Open (with a text editor like Atom or other) the aliases.sh

for ex: in my case the file is in C:\Software\Develop\Git\etc\profile.d\aliases.sh

2) Add your alias for Python

In my case the python.exe are installed in:

C:\Networking\Network Automation\Python 2.7\python.exe
C:\Networking\Network Automation\Python 3.7\python.exe

So you must create 2 aliases, one for Python 2 (I named python2) and the other for Python 3 (I named just python) Git Bash uses linux file structure so you need to change the "\" for "/" and if you have a path like my example Network Automation you put it with " "

"Network Automation", for ex.

winpty is the magic command that will call the executable.

So add these lines at the beginning of aliases.sh

alias python2='winpty C/Networking/"Network Automation"/"Python 2.7"/python.exe'
alias python='winpty C/Networking/"Network Automation"/"Python 3.7"/python.exe'

3) Add or Modify other aliases (if you want)

I modified also the ll alias to show all the files and in a human readable list:

alias ll='ls -lah'

4) Save the aliases.sh file


5) OK!!! close and relaunch your Git Bash

Now, permanently you could launch both Python directly from Git shell just writting

$ python -> launch Python 3

$ python2 -> launch Python 2

$ ll -> enters a ls -lah to quickly show your detailed file list

Cheers, Harry

Harry
  • 91
  • 1
  • 2
8

2 workarounds, rather than a solution: In my Git Bash, following command hangs and I don't get the prompt back:

% python

So I just use:

% winpty python

As some people have noted above, you can also use:

% python -i

2020-07-14: Git 2.27.0 has added optional experimental support for pseudo consoles, which allow running Python from the command line: enter image description here

See attached session.enter image description here

urxter
  • 435
  • 4
  • 7
BabarBaig
  • 447
  • 1
  • 5
  • 13
6

type: 'winpty python' and it will work

gitbash has some issues when running any command that starts with python. this goes for any python manage.py commands as well. Always start with 'winpty python manage.py' At least this is what works for me. Running Windows 10.

5

You can change target for Git Bash shortcut from:

"C:\Program Files\Git\git-bash.exe" --cd-to-home 

to

"C:\Program Files\Git\git-cmd.exe" --no-cd --command=usr/bin/bash.exe -l -i

This is the way ConEmu used to start git bash (version 16). Recent version starts it normally and it's how I got there...

Igonato
  • 8,444
  • 3
  • 33
  • 58
  • This worked for me . Worth noting what the bash.exe arguments do? [man page](https://linux.die.net/man/1/sh) says `-l`: Make bash act as if it had been invoked as a login shell, `-i`: If the -i options is present, the shell is interactive – Day Nov 14 '19 at 15:50
  • I used to have ConEmu working fine without winpty a while ago and I completely forgot what I did. Thanks this worked just the way it was before! – chaz Apr 04 '20 at 06:16
2

In addition to @Vitaliy Terziev answer

try touch .bash_profile and then add alias into the file.

henjiFire
  • 50
  • 6
  • 1
    I used .bashrc, but when I opened Git Bash, I got a warning message that bashrc exists w/o a .bash_profile. I renamed .bashrc to .bash_profile and now the warning went away. Thanks. – JustinDanielson Feb 15 '18 at 08:51
1

I am using MINGW64 via Visual Studio Code on Windows 10 and trying to install node-sass (which requires python2). I followed felixrieseberg/windows-build-tools #56 on Github which solved my issue.

This is a special case, but I'm posting in case someone has the same problem:

npm --add-python-to-path='true' --debug install --global windows-build-tools

This installs python and other required build tools to %USERPROFILE%\.windows-build-tools\python27.

Blaskovicz
  • 5,722
  • 7
  • 36
  • 48
1

For python version 3.7.3 in vscode with gitbash as the default terminal I was dealing with this for a while and then followed @Vitaliy Terziev advice of adding the alias to .bashrc but with the following specification:

alias python=’“/c/Users/my user name/AppData/Local/Programs/Python/Python37/python.exe”’

Notice the combination of single and double quotes because of “my user name” spaces.

For me, "winpty" couldn't resolve python path in vscode.

Charlyboy
  • 511
  • 4
  • 6
1

Type the command PY instead of Python. Invoking the Interpreter (python.org).

Presi
  • 668
  • 6
  • 21
Alyf
  • 11
  • 2
0

Another example of this issue is using the AWS Elastic Beanstalk command line interface (awsebcli, eb cli) from the git bash (MINGW64, Mintty) in windows (using git version 2.19.0.windows.1).

I'm just posting this because it took me a while to end up here, searching for eb-cli specific issues.

Commands such as eb init or eb config save, which require user input, appear to cause a freeze/hang. In reality I guess the console is not updated with the text requesting user input. Moreover, eb deploy only updates the console text after the command has finished, so I don't get to see progress updates until finished.

As mentioned in the git for windows release notes (for v2.19.0) and e.g. in Xun Yang's answer, a workaround is to run

winpty eb <command> (instead of just eb <command>)

A alternative, as suggested in this git for windows issue, could be to use the windows native console instead of mintty (option during git installation).

djvg
  • 5,523
  • 3
  • 36
  • 64
0

The one worked for me is as mentioned earlier in these great answers above is the alias as follows: (I'm using anaconda, so first find where is the python path, then add it into the alias on git bash). 1. on anaconda terminal I run: where python 2. on git bash I run: alias python='winpty "C:\ProgramData\Anaconda3\envs\your_env_name\python.exe"' 3. Done. Python is defined inside the git Bash using the alias.

Thanks to (Vitaliy Terziev & hygull) for their very helpful answers.

HassanSh__3571619
  • 1,039
  • 1
  • 12
  • 13
0
  1. python.exe -i works but got issues in exiting from the interactive mode by sending "^Z" (CTRL+Z). So, seem better to use winpty python.exe in Git Bash for Windows.

  2. Use ~/bin directory to make a wrap/reference file (like ~/bin/python) which will be accessible everywhere (you may use different version reference like ~/bin/python37).
    Code inside the file:

#!/usr/bin/env bash
# maybe declare env vars here like
# export PYTHONHOME=/c/Users/%USERNAME%/.python/Python36
# export PATH="${PATH}:/c/Users/%USERNAME%/.python/Python36"

# replace %USERNAME%,
# or use "~" instead of "/c/Users/%USERNAME%" if it works
winpty /c/Users/%USERNAME%/.python/Python36/python.exe ${@}

I just don't like these "magic" aliases which you're always forgetting where it's coming from, and sometimes leads to issues in some cases.

  1. Use ~/bin/python file and -i parameter:
#!/usr/bin/env bash
if [ -z "${@}" ]; then
    # empty args, use interactive mode
    /c/Users/%USERNAME%/.python/Python36/python.exe -i
else
    /c/Users/%USERNAME%/.python/Python36/python.exe ${@}
fi
Kirby
  • 2,043
  • 22
  • 38
  • `19480756 [sig] bash 2740! sigpacket::process: Suppressing signal 18 to win32 process (pid 14820)` — response example after sending `^Z` with interactive mode ran by `python.exe -i` – Kirby Jan 22 '20 at 13:12
0

I know this is an old post, but I just came across this problem on Windows 10 running Python 3.8.5 and Git 2.28.0.windows.1

Somehow I had several different 2.7x versions of Python installed as well. I removed every version of Python (3x and 2x), downloaded the official installer here, installed 3.8.5 fresh (just used the defaults) which installed Python 3.8.5 at this location:

C:\Users\(my username)\AppData\Local\Programs\Python\Python38

Then to get the command python to work in my git bash shell, I had to manually add the path to Python38 to my path variable following the instructions listed here. This is important to note because on the python installer at the bottom of the first modal that comes up it asks if you want to add the python path to your PATH environment variable. I clicked the checkbox next to this but it didn't actually add the path, hence the need to manually add the path to my PATH environment variable.

Now using my gitbash shell I can browse to a directory with a python script in it and just type python theScriptName.py and it runs no problem.

I wanted to post this because this is all I had to do to get my gitbash shell to allow me to run python scripts. I think there might have been some updates so I didn't need to do any of the other solutions listed here. At any rate, this is another thing to try if you are having issues running python scripts in your gitbash shell on a Windows 10 machine.

Enjoy.

Gharbad The Weak
  • 1,124
  • 8
  • 23
0

if you run a Windows PowerShell command and an error occurs, the error record will be appended to the “automatic variable” named $error.

You can use the $error variable to find the errors, in the same PowerShell session.

The $Error variable holds a collection of information, and that’s why using $Error[0] can get to your error message objects. Also the $Error[0] variable will hold the last error message encountered until the PowerShell session ends.

Shaqil Ismail
  • 859
  • 1
  • 2
  • 4
-2

Have a look at this answer:

Git Bash won't run my python files?

the path in Git Bash should be set like this:

PATH=$PATH:/c/Python27/
Community
  • 1
  • 1
nevernew
  • 622
  • 6
  • 20