Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ess won't fully install ubuntu 12.04

The last time I ran sudo apt-get upgrade ess gave this error and now says its not fully installed. I checked and installed all dependencies and couldn't find any other reports of this issue.

enabling speedbar support
[ess-r-d:] (autoload ..) & (def** ..)
Wrong number of arguments: define-obsolete-function-alias, 3
xemacs exiting
.
emacs-package-install: /usr/lib/emacsen-common/packages/install/ess xemacs21 emacs23 xemacs21 failed at /usr/lib/emacsen-common/emacs-package-install line 30, <TSORT> line 1.
dpkg: error processing ess (--configure):
 subprocess installed post-installation script returned error exit status 255
Errors were encountered while processing:
 ess
E: Sub-process /usr/bin/dpkg returned an error code (1)
like image 906
sayhey69 Avatar asked Jan 31 '26 11:01

sayhey69


1 Answers

I had a similar problem. The comment from Max solved it:

sudo dpkg -r ess 
sudo apt-get check 
sudo apt-get update 
sudo apt-get upgrade --fix-missing 
sudo apt-get install ess
like image 162
csgillespie Avatar answered Feb 03 '26 06:02

csgillespie