Changes between Version 34 and Version 35 of NuWa_Slave

Show
Ignore:
Timestamp:
04/28/11 11:49:01 (13 years ago)
Author:
blyth (IP: 140.112.102.77)
Comment:

bitten-slave pre-requisite troubleshooting

Legend:

Unmodified
Added
Removed
Modified
  • NuWa_Slave

    v34 v35  
    1616  ||  NTU           || Simon               ||  cms01.phys.ntu.edu.tw   ||    Y                 ||  nearly continuous operation for several years      || 
    1717  ||  BNL           || Jiajie              ||  daya0001.rcf.bnl.gov    ||    Y                 ||  operational                                        ||    
    18   ||  IHEP          || Miao/Qiumei         ||  lxslc\d\d.ihep.ac.cn    ||    Y                 ||  operational, but somewhat unstable                 || 
     18  ||  IHEP          || Miao/Qiumei         ||  lxslc\d\d.ihep.ac.cn    ||    Y                 ||  operational                                        || 
     19  ||  Dayabay       || Miao                ||  offline.dyb.local       ||                      ||  ?                                                  || 
    1920  ||  LBNL          || Cheng-Ju            ||  pdsf\d.nersc.gov        ||    Y                 ||  operational                                        ||  
    2021  ||  VT            || Deb Mohapatra       ||   ?                      ||                      ||  initial investigations                             ||   
    2122  ||  Wisconsin     || ?Wei                ||   ?                      ||                      ||  ?                                                  ||  
    2223  ||  Shandong      || ?                   ||   ?                      ||                      ||  ?                                                  ||   
    23   ||  Dayabay       || Miao                ||  offline.dyb.local       ||                      ||  ?                                                  || 
    2424  ||  Caltech       ||  ?Dan               ||   ?                      ||                      ||  ?                                                  ||  
    2525 
     
    105105slv_secure=yes 
    106106}}} 
     107 
     108=== pre-requisite troubleshooting === 
     109 
     110Bitten needs to be installed into the system python, check if that is done using : 
     111{{{ 
     112[blyth@tbird bitn]$ which python 
     113/usr/bin/python 
     114[blyth@tbird ~]$  python -c "import bitten ; print bitten.__file__ " 
     115Traceback (most recent call last): 
     116  File "<string>", line 1, in ? 
     117ImportError: No module named bitten 
     118}}} 
     119 
     120Desired response is something like: 
     121{{{ 
     122[blyth@belle7 ~]$ python -c "import bitten ; print bitten.__file__ " 
     123/data1/env/local/env/trac/bitn/bitten/__init__.pyc 
     124}}} 
     125 
     126In order to install bitten into the system python, it must have '''setuptools''' already, check if this is the case with: 
     127{{{ 
     128[blyth@tbird bitn]$ python setup.py --help 
     129Traceback (most recent call last): 
     130  File "setup.py", line 13, in ? 
     131    from setuptools import setup, find_packages 
     132ImportError: No module named setuptools 
     133}}} 
     134 
    107135 
    108136