Changes between Version 3 and Version 4 of AddSandbox


Ignore:
Timestamp:
Apr 11, 2011 3:08:44 PM (13 years ago)
Author:
toby
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AddSandbox

    v3 v4  
    1212==== Step 2: Install the code ====
    1313
    14 If you have TortoiseSVN installed, you can use that to install the latest version of the code directly from repository location https://subversion.xor.aps.anl.gov/EXPGUI/branches/sandbox/ into the directory you have selected above. For hints on use of TortoiseSVN, see https://subversion.xor.aps.anl.gov/trac/CMPR/wiki/InstallViaSVN.
     14Since the sandbox is constantly changing, I strongly encourage use of option (A) or (B):
    1515
    16 Or you can use
     16(A) If you have TortoiseSVN installed, you can use that to install the latest version of the code directly from repository location https://subversion.xor.aps.anl.gov/EXPGUI/branches/sandbox/ into the directory you have selected above. For hints on use of TortoiseSVN, see https://subversion.xor.aps.anl.gov/trac/CMPR/wiki/InstallViaSVN.
     17
     18(B) Use the batch file below to install the files (this assumes that the self-upgrading EXPGUI has already been installed.)
     19
     20(C) Or you can use
    1721[https://subversion.xor.aps.anl.gov/trac/EXPGUI/changeset/1117/branches/sandbox?old_path=%2F&format=zip this link] to download the files in a zip archive. Unpack them into the directory you have selected above.
    1822
     
    5357
    5458Desktop shortcuts are also possible in linux.
     59
     60=== Batch file to load the Development version of EXPGUI ===
     61{{{
     62@REM this script must be run from the GSAS installation directory
     63@echo *******************************************************
     64@echo **** Installing the development version of EXPGUI *****
     65@echo This file assumes GSAS & EXPGUI are already installed.
     66@echo This also assumes that this .bat file is placed in the
     67@echo main GSAS directory (C:\GSAS etc.)
     68@echo Press return to start development EXPGUI install
     69@echo *****************************************
     70@if exist expgui goto getexpgui
     71@ECHO *************************************************************************
     72@ECHO EXPGUI directory not found. You very likely have this script in the
     73@ECHO wrong place. Install aborted!
     74@ECHO *************************************************************************
     75@pause
     76@exit
     77getexpgui:
     78@pause
     79@ECHO Loading development EXPGUI from subversion server
     80.\svn\bin\svn co https://subversion.xor.aps.anl.gov/EXPGUI/sandbox sandbox
     81@echo **************************************************
     82@echo Install has completed. Development EXPGUI will now be started.
     83@echo **************************************************
     84@pause
     85%COMSPEC% /c "start exe\ncnrpack.exe sandbox\expgui"
     86exit
     87}}}
     88