c++ - Cannot install Code::Blocks IDE on Debian 8 Jesse -


i trying install codeblocks 16.01 on 64 bit debian jessie. reason cannot. downloaded file codeblocks_16.01_amd64_jessie.tar.xz codeblocks download page .

inside file there many .deb files - the .deb files in download

i have tried install both amd64.deb , common_16.01_all.deb graphically right-click -> open -> package install

when try not work. window pops saying "failed instal files: unspecified transaction error has occured. more information available in detailed report."

if knew find detailed report paste here. helpful.

something different happens when try install codeblocks-common_16.01_all.deb graphically. password prompted "installing packages" loading bar window appears. window disappears. when go program finder launch codeblocks there no icon launch program. assume means program not installed.

any other .deb files same thing amd64.deb - "an unspecified transaction error has occured."

i installing ide. maybe have install package in folder? download page codeblocks not detail have do.

i try best provide information need if ask it. you!

you can install codeblocks backports mentioned @steh:

apt edit-sources 

add following line:

deb http://httpredir.debian.org/debian jessie-backports main 

save , update:

apt update 

check apt-cahe policy codeblock:

codeblocks: installed: (none) candidate: 16.01+dfsg-2~bpo8+1 version table:   16.01+dfsg-2~bpo8+1 0      100 http://httpredir.debian.org/debian/ jessie-backports/main amd64 packages 

install it:

apt-get -t jessie-backports install codeblocks 

from tarball:

install required package:

install compiler.

apt-get install build-essential 

install debugger:

apt-get install gdb 

install wxwidgets library

apt-get install libwxgtk2.8-0 

install wxwidgets developement packages:

apt-get install libwxgtk2.8-dev 

download tarball here extract it:

wget http://netix.dl.sourceforge.net/project/codeblocks/binaries/16.01/linux/debian%20jessie/codeblocks_16.01_amd64_jessie.tar.xz tar xvf codeblocks_16.01_amd64_jessie.tar.xz 

change directory , install packages :

dpkg -i *.deb 

Comments

Popular posts from this blog

php - How to display all orders for a single product showing the most recent first? Woocommerce -

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

angularjs - How restrict admin panel using in backend laravel and admin panel on angular? -