Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Fix Python-based commands/scripts for Python 2.7 on Windows 7 (x64) | |
Due to Windows 7 UAC requirements Python-based commands (such as easy_install, | |
ipython, nosetests, pip...) open a new terminal window, making it hard to read | |
the output. | |
As documented elsewhere [1]_, the most practical solution is apparently replacing | |
the executables with a batch file that calls the Python script. This is tedious to | |
do by hand if you have many packages that install new commands. |