Project

General

Profile

Actions

Update within the same version using svn » History » Revision 1

Revision 1/4 | Next »
Anchi Cheng, 05/11/2012 11:20 PM


Update within the same version using svn

From time to time, we discover critical bugs that users are encouraged to update within the branch (x.x version) that they have checked out. Here is how to update when these situation arrives.

You still have the svn check out of the whole myami superpackage saved on the same computer:

  1. Go to the myami directory
  2. Confirm that this checkout working sandbox is the branch you want:
    **Linux
    svn info
    
  3. update the checkout
    **Linux
    svn update
    

    You should see what has been changed by the update
  4. for the each of the python subpackage that changes are made, redo the python installation with the same command you used originally. For example, if changes were made in leginon subpackage, you would install leginon by
    *Linux
    cd /_your_myami_svn_checkout_/leginon
    python setup.py install
    

    *Windows from command line
    cd \_your_myami_svn_checkout_\leginon
    C:\Python25\python.exe setup.py install
    

Updated by Anchi Cheng about 12 years ago · 1 revisions