Changes between Version 3 and Version 4 of AddSandbox
- Timestamp:
- Apr 11, 2011 3:08:44 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AddSandbox
v3 v4 12 12 ==== Step 2: Install the code ==== 13 13 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. 14 Since the sandbox is constantly changing, I strongly encourage use of option (A) or (B): 15 15 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 17 21 [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. 18 22 … … 53 57 54 58 Desktop 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 77 getexpgui: 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" 86 exit 87 }}} 88