I installed python27 64-bit on windows 7. I also have setuptools and pip installed. Now when I execute command in windows console new console window appear, message is printed in it and close before i can read something from it. e. g. I installed yolk and when type yolk -l in cmd it shows me all packages in new cmd window and close immediately. What should I do if I want all messages in main command window?
I installed python27 64-bit on windows 7. I also have setuptools and pip installed.
Share
When you run
piporeasy_installfrom the command-line, your system will be startingeasy_install.exeorpip.exe. As of Python 2.7 x64 these executables have a manifest file to satisfy Windows 7’s UAC requirements. You can read a little more about this here, but in short, because the applications could be running with different permissions, a new window is opened.I don’t believe there’s a proper fix to get around this, short of downgrading. However, you can bypass the problem by not using the executable files.
Back up and then remove
pip.exe,easy_install.exe, andfab.exe(if you have Fabric).Create a bunch of batch files matching the original binaries’ names, and put them in the same folder that had the binaries (default
C:\Python27\Scripts).easy_install.bat
pip.bat
fab.bat
With these in place, you should find your command-line use of these tools doesn’t spawn a new window. Happy hacking.