1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
The /doc/developer directory has been moved into the folder /documentation in the dials_scratch repository.
To install this repository choose ONE of the following options:
1. If you have a github account and SSH keypair installed, run
mkdir $(libtbx.show_repository_paths | head -1)/dials_scratch
cd $_
git clone git@github.com:dials/dials_scratch.git .
libtbx.configure dials_scratch
2. If you have git installed, and are happy with read-only-access to the repository, run
mkdir $(libtbx.show_repository_paths | head -1)/dials_scratch
cd $_
git clone https://github.com/dials/dials_scratch.git .
libtbx.configure dials_scratch
3. If you have svn installed, run
mkdir $(libtbx.show_repository_paths | head -1)/dials_scratch
cd $_
svn checkout https://github.com/dials/dials_scratch.git .
libtbx.configure dials_scratch
4. If you have neither git nor svn installed, run
mkdir $(libtbx.show_repository_paths | head -1)/dials_scratch
cd $_
curl -L https://github.com/dials/dials_scratch/archive/master.zip > master.zip
unzip master.zip && rm master.zip
libtbx.configure dials_scratch
|