Edgewall Software

Changes between Version 19 and Version 20 of TracOnWindows/Rewrite


Ignore:
Timestamp:
Dec 8, 2006, 11:39:45 PM (17 years ago)
Author:
Nathan.Lance@…
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracOnWindows/Rewrite

    v19 v20  
    1010Download and run the Python MSI installer:
    1111[http://www.python.org/ftp/python/2.4.3/python-2.4.3.msi python-2.4.3.msi]
     12
     13Then add the path to the directory where you chose to install Python to your PATH environment variable.  This is important to be able to run the Python executable from any directory in the command line.
    1214
    1315== Experimental All-In-One Installer ==
     
    9799
    98100Initialize a new Trac project environment:
     101
     102First go to the 'Scripts' folder in your Python install directory (e.g. "\Python24\Scripts"), and add the '.py' extension onto the files 'tracd' and 'trac-admin'.  Then, from the same folder, type the following at the command line:
     103
    99104{{{
    100105mkdir trac
    101 \Python24\python.exe \Python24\Scripts\trac-admin trac\my-project initenv
     106\Python24\Scripts\trac-admin.py trac\my-project initenv
    102107}}}
    103108
     
    113118Trac includes a standalone webserver called [wiki:TracStandalone tracd].  You can also use Trac with other webservers, but you should first try tracd to make sure everything's set up and working correctly:
    114119
    115 You should still be in the "C:\Projects" folder on the command line:
     120From the command line, and in the [Python Install]\Scripts directory:
    116121{{{
    117 \Python24\python.exe \Python24\Scripts\tracd -p8000 trac\my-project
     122tracd.py -p8000 trac\my-project
    118123}}}
    119124