Open main menu

Changes

Drag the 4 above mentioned packakes, into the window, and install the packages.<br>
For a command window, use the '''WinPython Command Prompt''' found in '''C:\WinPython27\WinPython-64bit-2.7.x''', which fixes path issues for finding python.
 
=== Trick to set variables in cmd ===
Make a folder '''own''' in '''C:\WinPython27\WinPython-32bit-2.7.x\scripts''' and <br>
copy '''C:\WinPython27\WinPython-32bit-2.7.x\scripts\env.bat''' to '''C:\WinPython27\WinPython-32bit-2.7.x\scripts\own\pyt64.bat'''<br>
and copy '''C:\WinPython27\WinPython-32bit-2.7.x\scripts\cmd.bat''' to '''C:\WinPython27\WinPython-32bit-2.7.x\scripts\own\cmdpyt64.bat'''<br>
 
Modify '''pyt64.bat''' from
<source lang="python">
set WINPYDIR=%~dp0..\python-2.7.5.amd64
</source>
to include '''..\'''
<source lang="python">
set WINPYDIR=%~dp0..\..\python-2.7.5.amd64
</source>
 
Modify '''cmdpyt64.bat''' from
<source lang="python">
call %~dp0env.bat
</source>
to include '''..\'''
<source lang="python">
call %~dp0pyt64.bat
</source>
= Install Visual Studio Professional 2012 =