Edgewall Software

Changes between Version 195 and Version 196 of TracOnWindows


Ignore:
Timestamp:
Apr 27, 2007, 4:45:02 AM (17 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracOnWindows

    v195 v196  
    1515== Method 1: Experimental All-In-One Installer ==
    1616
    17 This installation script only requires a Python 2.4 installation and will download and install the basic Trac dependencies and optionally the Subversion libraries.
     17This installation script only requires a Python 2.4 installation and will download and install the basic Trac dependencies and optionally the Subversion libraries. It does not always succeed - see the section Troubleshooting below.
    1818
    1919  1. Download and double-click this script to install Trac: [attachment:trac-0.10.3-win32-install.py?format=raw trac-0.10.3-win32-install.py]
     
    105105Ok, now that Trac and all its requirements have been installed you can create your first project and try it out.
    106106
    107 This example will create the projects in "C:\Projects".  This is a good default location, but you can put them in another drive or folder if you prefer.
     107This example will create the projects in "C:\projects".  This is a good default location, but you can put them in another drive or folder if you prefer.
    108108
    109109Back to the command line:
    110110{{{
    111 cd \
    112 mkdir Projects
    113 cd Projects
     111md \projects
     112cd projects
    114113}}}
    115114
    116115'''Optional:''' if you're using Trac with Subversion you can create a new repository for your source code:
    117116{{{
    118 mkdir svn
    119 svnadmin create svn\my-project
     117mkdir \projects\svn
     118svnadmin create \projects\svn\my-project
    120119}}}
    121120
     
    133132'''Subversion users:''' when asked for the "Path to repository" input the folder of the repository you just created:
    134133{{{
    135 Path to repository [/path/to/repos]> c:/Projects/svn/my-project
     134Path to repository [/path/to/repos]> c:/projects/svn/my-project
    136135}}}
    137136
     
    157156The Subversion library is not installed properly.  Be sure you used the "-Z" option with easy_install when [#svnbindings installing] the Subversion bindings.
    158157
     158==== Error: Setup script exited with error: Python was built with version 7.1 of Visual Studio, and extensions need to be built with the same version of the compiler, but it isn't installed. ====
     159
     160From [http://www.mail-archive.com/trac-dev@googlegroups.com/msg00997.html]
     161
     162> The problem is that the pre-built Windows binaries for PySQLite are
     163> currently not detected by setuptools, so it is trying to download and
     164> compile the sources which requires a build environment.  Unfortunately
     165> this is not particularly common or easy on Windows.  I have reported
     166> the problem to the PySQLite developers, so hopefully they will
     167> addresss this soon: http://initd.org/tracker/pysqlite/ticket/191
     168
     169
     170It appears you can successfully install Trac by following a combination of Method 3: Manual Installation and Method 2: Using Installers, above. The critical step for installing PySQLite is to use the self-installing EXE version, which does not trigger the bogus compile step. As noted above, download and execute the appropriate file:
     171
     172
     173|| ''PySqlite'' ||  [http://initd.org/pub/software/pysqlite/releases/2.3/2.3.2/pysqlite-2.3.2.win32-py2.4.exe pysqlite-2.3.2.win32-py2.4.exe] (or the [http://initd.org/pub/software/pysqlite/releases/2.3/2.3.2/pysqlite-2.3.2.win32-py2.3.exe Python 2.3 version]) ||
     174
     175
     176
    159177----
    160178See also: the TracOnWindows/Advanced instructions, TracOnWindows/Rewrite for discussing improvements to this page and ["Trac0.9/TracOnWindows"] for the previous version of this document.