4
3
I recently upgraded my laptop, which ran a 32-bit Win7, and my new laptop runs a 64-bit Win7 installation.
I am installing git 2.5.1 from git-scm.com, and the latest python versions (both 3.4.3 and 2.7.10).
During installation, I select to use the new (default) terminal that did not previously come with the installation, and fire up the terminal after installation is completed. When I type in python, however, I don't see any output (cursor moves to the next line as I press enter).
I have tried entering in python commands such as print('hello world'), and the only output I can get is a Syntax error if I type something like a.4. It seems python is running, but I am getting no output. This happens for either version of python that I run.
Python seems to run normally with the alternative Windows cmd-based git, but my normal console wrapper, Console2 doesn't seem to be working correctly, so I can't copy/paste with it very easily.
Any idea as to why the msys console isn't working, or how I can fix this?

So you are suggesting installing Msys2 either before or after installing Msys-git? Also, can you clarify what this means?:
To get have Git branch show in Prompt copy the file that Git folks put their prompt into and source it in your .bashrc (.git-prompt.sh)– Casey Kuball – 2016-11-07T17:26:12.733@cascer1 [reply 1 of 2] I do have both [Git for Win] (https://git-scm.com/download/win) and [Msys2] (https://sourceforge.net/p/msys2/wiki/MSYS2%20installation/) installed. In Msys2 you can install Git manually
– Brad Sturtevant – 2016-11-10T07:09:48.900pacman -S git git-flow. The prompt I like isUser@BHost MINGW64 ~/Develop/src/my-git-clone (develop). The(develop)part is what's added. When you enter a dir with a .git sub dir (Git project) it will display current Git branch (develop). The folks at Git have enhanced the prompt in Msys by creating a fileGitInstallDir\etc\profile.d\git-prompt.sh.@cascer1 [reply 2 of 2] You can add Git's prompt (to Msys2) by referencing git-prompt.sh in your ~/.bashrc, or copy/rename file to ~/.bash_prompt, then in ~/.bashrc I added
. "${HOME}/.bash_prompt.sh". Also can just copy both alias and prompt as displaied above. Git for Win comes with winpty but Msys2 does not, so didpacman -S winpty. Have not tested Msys2 without Git for Windows, but Msys2 is working well with GitHub. I am treating Git for Win startup files (.bashrc, etc.) as examples of how to setup my own. – Brad Sturtevant – 2016-11-10T07:10:15.163@BradSturtevant Uhh, I'm not sure how to reply to this. All I did was edit your post to make it a little easier to read ;). You can see what I changed here
– cascer1 – 2016-11-10T08:02:07.793@cascar1 It was your comment on edit about an unintelagle sentence that I was trying to explain. If only I had edit priviledge :-) – Brad Sturtevant – 2016-11-11T00:49:23.240