|
Size: 1303
Comment:
|
Size: 1596
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 6: | Line 6: |
| 1. Microsoft Visual Studio 2008 | 1. Microsoft Visual Studio 2008 |
| Line 9: | Line 9: |
| 1. [[http://gnuwin32.sourceforge.net/|GnuWin32]] To get access to gzip/tar, I downloaded those packages. You can also just download all the packages. All the packages get installed by default to [[%ProgramFiles%\GnuWin32\]], and the .exe files reside in [[%ProgramFiles%\GnuWin32\bin\]] |
1. [[http://gnuwin32.sourceforge.net/|GnuWin32]]<<BR>> To get access to gzip/tar, I downloaded those packages. You can also just download all the packages.<<BR>> All the packages get installed by default to ''''''%ProgramFiles%\GnuWin32\'''''', and the .exe files reside in ''''''%ProgramFiles%\GnuWin32\bin\'''''' |
| Line 13: | Line 13: |
| 1. Subversion Client I downloaded mine from [[http://www.open.collab.net/downloads/subversion/]]. |
1. Subversion Client<<BR>> Needed to get the updated source of the libraries that Python 2.6 depends on. I downloaded mine from [[http://www.open.collab.net/downloads/subversion/]]. |
| Line 16: | Line 17: |
| 1. Set up some scripts to help yourself. Make a windows shell script to setup your environment. Make a file named something like [[%USERPROFILE%\my_sage_env.cmd]]. A good one to get started is something like: |
1. Cvs Client<<BR>> Needed to get the latest version of the source for PyWin32.<<BR>> I downloaded mine from [[http://www.wincvs.org/]]. 1. Set up some scripts to help yourself.<<BR>> Make a windows shell script to setup your environment.<<BR>> Make a file named something like ''''''%USERPROFILE%\my_sage_env.cmd''''''.<<BR>> A good one to get started is something like: |
| Line 27: | Line 32: |
| Make a shortcut to [[%SystemRoot%\System32\cmd.exe]]. Then right click, select properties and on the Shortcut Tab, edit the Target field to: | Make a shortcut to ''''''%SystemRoot%\System32\cmd.exe''''''. Then right click, select properties and on the Shortcut Tab, edit the Target field to: |
Preliminaries for Building Python / Sage on Windows
This wiki is a repository for my notes on software / scripts I needed or used to get Python/Sage building under windows.
Compiler / Development Environment
- Microsoft Visual Studio 2008
Other stuff
GnuWin32
To get access to gzip/tar, I downloaded those packages. You can also just download all the packages.
All the packages get installed by default to %ProgramFiles%\GnuWin32\, and the .exe files reside in %ProgramFiles%\GnuWin32\bin\Subversion Client
Needed to get the updated source of the libraries that Python 2.6 depends on. I downloaded mine from http://www.open.collab.net/downloads/subversion/.Cvs Client
Needed to get the latest version of the source for PyWin32.
I downloaded mine from http://www.wincvs.org/.Set up some scripts to help yourself.
Make a windows shell script to setup your environment.
Make a file named something like %USERPROFILE%\my_sage_env.cmd.
A good one to get started is something like:
echo off cls echo "Running CMD w/ special environment variables set..." set PATH=%PATH%;%ProgramFiles%\GnuWin32\bin;%ProgramFiles%\CollabNet Subversion Client echo on
Make a shortcut to %SystemRoot%\System32\cmd.exe. Then right click, select properties and on the Shortcut Tab, edit the Target field to:
D:\Windows\System32\cmd.exe /K %USERPROFILE%\my_sage_env.cmd
