Displaying 3 results from an estimated 3 matches for "needremov".
Did you mean:
needremoval
2006 Apr 05
2
Problems in package management after Linux system upgrade
...Rlsf")
#put the 3 sets of rejects together
failPackages <- union(failPackages1,union(failPackages2,failPackages3))
#list of all currently installed packages
installedPackages <- rownames (installed.packages() )
#do any installed packages need removal because they are on the blacklist?
needRemoval <- installedPackages %in% failPackages
# remove any blacklisted packages if they are already installed.
if (sum(needRemoval) >0) remove.packages(installedPackages[needRemoval] )
#update the ones you want to keep
update.packages(ask=F, checkBuilt=T)
#get list of all new packages on CR...
2006 Jan 20
2
cron job install/update problems: tcltk can't find display (installing e.g., pbatR)
...ce","uroot","fMultivar","fOptions","gcmrec","rcom","Rlsf")
#list of all currently installed packages
installedPackages <- rownames (installed.packages() )
#do any installed packages need removal because they are on the blacklist?
needRemoval <- installedPackages %in% failPackages
# remove any blacklisted packages if they are already installed.
if (sum(needRemoval) >0) remove.packages(installedPackages[needRemoval] )
#update the ones you want to keep
update.packages(ask=F, checkBuilt=T)
#get list of all new packages on CR...
2006 Jan 20
2
cron job install/update problems: tcltk can't find display (installing e.g., pbatR)
...ce","uroot","fMultivar","fOptions","gcmrec","rcom","Rlsf")
#list of all currently installed packages
installedPackages <- rownames (installed.packages() )
#do any installed packages need removal because they are on the blacklist?
needRemoval <- installedPackages %in% failPackages
# remove any blacklisted packages if they are already installed.
if (sum(needRemoval) >0) remove.packages(installedPackages[needRemoval] )
#update the ones you want to keep
update.packages(ask=F, checkBuilt=T)
#get list of all new packages on CR...