E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages
up vote
10
down vote
favorite
I've been trying to install the CoreBird Twitter application and have had horrible luck with getting it to compile and then I came across a deb (from here) and tried to install it that way.
However, I got this error:
corebird depends on libglib2.0-0 (>= 2.41.1); however:
Package libglib2.0-0:amd64 is not configured yet.
corebird depends on libgtk-3-0 (>= 3.13.7); however:
Version of libgtk-3-0:amd64 on system is 3.10.8-0ubuntu1.4.
So, I tried to be smart and manually track down and install those libraries. I found the correct deb file, but when I ran dpkg -i
for the libglib
deb, I got this:
pkg: error processing package libglib2.0-0:amd64 (--install):
package libglib2.0-0:amd64 2.42.0-2 cannot be configured because libglib2.0-0:i386 is at a different version (2.40.2-0ubuntu1)
and something else about not being able to configure it because libglib2.0-0:amd64 was the wrong version.
This is where I went wrong. I, without thinking, ran sudo apt-get remove libglib2.0-0:amd64
.
So, obviously, it created a crap ton of dependency issues and told me to run sudo apt-get -f install
. I did that, and now I get this:
sudo apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... failed.
The following packages have unmet dependencies:
corebird : Depends: libgtk-3-0 (>= 3.13.7) but 3.10.8-0ubuntu1.4 is installed
libglib2.0-0 : Breaks: libglib2.0-0:i386 (!= 2.42.0-2) but 2.40.2-0ubuntu1 is installed
libglib2.0-0:i386 : Breaks: libglib2.0-0 (!= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
libglib2.0-bin : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
libglib2.0-dev : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
E: Unable to correct dependencies
Apparently, the glib
2.42.0-2 package installed after I removed the previously installed 2.40.2, and is now causing all sorts of issues. Obviously, this is an issue.
Does anyone know how to fix this issue?
My /var/log/dist-upgrade/apt.log
file is empty:
cat /var/log/dist-upgrade/apt.log
cat: /var/log/dist-upgrade/apt.log: No such file or directory
and the command dpkg --get-selections | grep hold
returns nothing:
$ dpkg --get-selections | grep hold
$
EDIT
This question is not a duplicate. I can't install aptitude
even if I wanted to (same error.)
apt package-management dpkg glib
add a comment |
up vote
10
down vote
favorite
I've been trying to install the CoreBird Twitter application and have had horrible luck with getting it to compile and then I came across a deb (from here) and tried to install it that way.
However, I got this error:
corebird depends on libglib2.0-0 (>= 2.41.1); however:
Package libglib2.0-0:amd64 is not configured yet.
corebird depends on libgtk-3-0 (>= 3.13.7); however:
Version of libgtk-3-0:amd64 on system is 3.10.8-0ubuntu1.4.
So, I tried to be smart and manually track down and install those libraries. I found the correct deb file, but when I ran dpkg -i
for the libglib
deb, I got this:
pkg: error processing package libglib2.0-0:amd64 (--install):
package libglib2.0-0:amd64 2.42.0-2 cannot be configured because libglib2.0-0:i386 is at a different version (2.40.2-0ubuntu1)
and something else about not being able to configure it because libglib2.0-0:amd64 was the wrong version.
This is where I went wrong. I, without thinking, ran sudo apt-get remove libglib2.0-0:amd64
.
So, obviously, it created a crap ton of dependency issues and told me to run sudo apt-get -f install
. I did that, and now I get this:
sudo apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... failed.
The following packages have unmet dependencies:
corebird : Depends: libgtk-3-0 (>= 3.13.7) but 3.10.8-0ubuntu1.4 is installed
libglib2.0-0 : Breaks: libglib2.0-0:i386 (!= 2.42.0-2) but 2.40.2-0ubuntu1 is installed
libglib2.0-0:i386 : Breaks: libglib2.0-0 (!= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
libglib2.0-bin : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
libglib2.0-dev : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
E: Unable to correct dependencies
Apparently, the glib
2.42.0-2 package installed after I removed the previously installed 2.40.2, and is now causing all sorts of issues. Obviously, this is an issue.
Does anyone know how to fix this issue?
My /var/log/dist-upgrade/apt.log
file is empty:
cat /var/log/dist-upgrade/apt.log
cat: /var/log/dist-upgrade/apt.log: No such file or directory
and the command dpkg --get-selections | grep hold
returns nothing:
$ dpkg --get-selections | grep hold
$
EDIT
This question is not a duplicate. I can't install aptitude
even if I wanted to (same error.)
apt package-management dpkg glib
add a comment |
up vote
10
down vote
favorite
up vote
10
down vote
favorite
I've been trying to install the CoreBird Twitter application and have had horrible luck with getting it to compile and then I came across a deb (from here) and tried to install it that way.
However, I got this error:
corebird depends on libglib2.0-0 (>= 2.41.1); however:
Package libglib2.0-0:amd64 is not configured yet.
corebird depends on libgtk-3-0 (>= 3.13.7); however:
Version of libgtk-3-0:amd64 on system is 3.10.8-0ubuntu1.4.
So, I tried to be smart and manually track down and install those libraries. I found the correct deb file, but when I ran dpkg -i
for the libglib
deb, I got this:
pkg: error processing package libglib2.0-0:amd64 (--install):
package libglib2.0-0:amd64 2.42.0-2 cannot be configured because libglib2.0-0:i386 is at a different version (2.40.2-0ubuntu1)
and something else about not being able to configure it because libglib2.0-0:amd64 was the wrong version.
This is where I went wrong. I, without thinking, ran sudo apt-get remove libglib2.0-0:amd64
.
So, obviously, it created a crap ton of dependency issues and told me to run sudo apt-get -f install
. I did that, and now I get this:
sudo apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... failed.
The following packages have unmet dependencies:
corebird : Depends: libgtk-3-0 (>= 3.13.7) but 3.10.8-0ubuntu1.4 is installed
libglib2.0-0 : Breaks: libglib2.0-0:i386 (!= 2.42.0-2) but 2.40.2-0ubuntu1 is installed
libglib2.0-0:i386 : Breaks: libglib2.0-0 (!= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
libglib2.0-bin : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
libglib2.0-dev : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
E: Unable to correct dependencies
Apparently, the glib
2.42.0-2 package installed after I removed the previously installed 2.40.2, and is now causing all sorts of issues. Obviously, this is an issue.
Does anyone know how to fix this issue?
My /var/log/dist-upgrade/apt.log
file is empty:
cat /var/log/dist-upgrade/apt.log
cat: /var/log/dist-upgrade/apt.log: No such file or directory
and the command dpkg --get-selections | grep hold
returns nothing:
$ dpkg --get-selections | grep hold
$
EDIT
This question is not a duplicate. I can't install aptitude
even if I wanted to (same error.)
apt package-management dpkg glib
I've been trying to install the CoreBird Twitter application and have had horrible luck with getting it to compile and then I came across a deb (from here) and tried to install it that way.
However, I got this error:
corebird depends on libglib2.0-0 (>= 2.41.1); however:
Package libglib2.0-0:amd64 is not configured yet.
corebird depends on libgtk-3-0 (>= 3.13.7); however:
Version of libgtk-3-0:amd64 on system is 3.10.8-0ubuntu1.4.
So, I tried to be smart and manually track down and install those libraries. I found the correct deb file, but when I ran dpkg -i
for the libglib
deb, I got this:
pkg: error processing package libglib2.0-0:amd64 (--install):
package libglib2.0-0:amd64 2.42.0-2 cannot be configured because libglib2.0-0:i386 is at a different version (2.40.2-0ubuntu1)
and something else about not being able to configure it because libglib2.0-0:amd64 was the wrong version.
This is where I went wrong. I, without thinking, ran sudo apt-get remove libglib2.0-0:amd64
.
So, obviously, it created a crap ton of dependency issues and told me to run sudo apt-get -f install
. I did that, and now I get this:
sudo apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... failed.
The following packages have unmet dependencies:
corebird : Depends: libgtk-3-0 (>= 3.13.7) but 3.10.8-0ubuntu1.4 is installed
libglib2.0-0 : Breaks: libglib2.0-0:i386 (!= 2.42.0-2) but 2.40.2-0ubuntu1 is installed
libglib2.0-0:i386 : Breaks: libglib2.0-0 (!= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
libglib2.0-bin : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
libglib2.0-dev : Depends: libglib2.0-0 (= 2.40.2-0ubuntu1) but 2.42.0-2 is installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
E: Unable to correct dependencies
Apparently, the glib
2.42.0-2 package installed after I removed the previously installed 2.40.2, and is now causing all sorts of issues. Obviously, this is an issue.
Does anyone know how to fix this issue?
My /var/log/dist-upgrade/apt.log
file is empty:
cat /var/log/dist-upgrade/apt.log
cat: /var/log/dist-upgrade/apt.log: No such file or directory
and the command dpkg --get-selections | grep hold
returns nothing:
$ dpkg --get-selections | grep hold
$
EDIT
This question is not a duplicate. I can't install aptitude
even if I wanted to (same error.)
apt package-management dpkg glib
apt package-management dpkg glib
edited Apr 13 '17 at 12:23
Community♦
1
1
asked Jun 7 '15 at 22:27
RPi Awesomeness
6,421195997
6,421195997
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
up vote
0
down vote
Playing around with the terminal, I randomly came out with a solution, it is as follows :-
Install Synaptic Package Manager
sudo apt-get install synaptic
Now go to the Synaptic package manager through the start or by typing sudo synaptic
on the terminal
Next, search for the package with unmet dependencies.
Mark the package for complete removal
Click Apply
on the top
Synaptic will first resolve the unmet dependencies and then it will completely remove the package, you can install it again later.
Just try it, it should work to the best of my knowledge. In my case, it did work.
add a comment |
up vote
0
down vote
I would try to do it like that:
sudo apt-get remove corebird
sudo apt-get -f install
Then make sure that everything is back to normal.
After that, change repos in /etc/apt/sources.list
to vivid
and get the needed libraries through apt-get.
Install corebird
with dpkg.
Change /etc/apt/sources.list
back to trusty
.
add a comment |
up vote
0
down vote
I know your are looking for a general issue, but I stumbled upon this for the corebird app. You now have an easier option on 16.04+ to use corebird:
sudo snap install corebird
add a comment |
up vote
0
down vote
I tried your corebird index
praz@Lenovo-E10-30:~/Downloads$ sudo gdebi corebird_1.0-1_amd64.deb
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading state information... Done
Modern, easy and fun Twitter client
Twitter client, built using GTK+.
Do you want to install the software package? [y/N]:y
Selecting previously unselected package corebird.
(Reading database ... 273217 files and directories currently installed.)
Preparing to unpack corebird_1.0-1_amd64.deb ...
Unpacking corebird (1.0-1) ...
Setting up corebird (1.0-1) ...
Processing triggers for menu (2.1.47ubuntu1.17.10.1) ...
Processing triggers for bamfdaemon (0.5.3+17.10.20170810-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for desktop-file-utils (0.23-1ubuntu3.17.10.1) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.17-1) ...
Processing triggers for libglib2.0-0:i386 (2.54.1-1ubuntu1) ...
Processing triggers for libglib2.0-0:amd64 (2.54.1-1ubuntu1) ...
Processing triggers for man-db (2.7.6.1-2) ...
after installed I can open it
I think try use gdebi, I hope this helps.
add a comment |
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Playing around with the terminal, I randomly came out with a solution, it is as follows :-
Install Synaptic Package Manager
sudo apt-get install synaptic
Now go to the Synaptic package manager through the start or by typing sudo synaptic
on the terminal
Next, search for the package with unmet dependencies.
Mark the package for complete removal
Click Apply
on the top
Synaptic will first resolve the unmet dependencies and then it will completely remove the package, you can install it again later.
Just try it, it should work to the best of my knowledge. In my case, it did work.
add a comment |
up vote
0
down vote
Playing around with the terminal, I randomly came out with a solution, it is as follows :-
Install Synaptic Package Manager
sudo apt-get install synaptic
Now go to the Synaptic package manager through the start or by typing sudo synaptic
on the terminal
Next, search for the package with unmet dependencies.
Mark the package for complete removal
Click Apply
on the top
Synaptic will first resolve the unmet dependencies and then it will completely remove the package, you can install it again later.
Just try it, it should work to the best of my knowledge. In my case, it did work.
add a comment |
up vote
0
down vote
up vote
0
down vote
Playing around with the terminal, I randomly came out with a solution, it is as follows :-
Install Synaptic Package Manager
sudo apt-get install synaptic
Now go to the Synaptic package manager through the start or by typing sudo synaptic
on the terminal
Next, search for the package with unmet dependencies.
Mark the package for complete removal
Click Apply
on the top
Synaptic will first resolve the unmet dependencies and then it will completely remove the package, you can install it again later.
Just try it, it should work to the best of my knowledge. In my case, it did work.
Playing around with the terminal, I randomly came out with a solution, it is as follows :-
Install Synaptic Package Manager
sudo apt-get install synaptic
Now go to the Synaptic package manager through the start or by typing sudo synaptic
on the terminal
Next, search for the package with unmet dependencies.
Mark the package for complete removal
Click Apply
on the top
Synaptic will first resolve the unmet dependencies and then it will completely remove the package, you can install it again later.
Just try it, it should work to the best of my knowledge. In my case, it did work.
answered Nov 19 '16 at 17:22
mohitR0_0
1167
1167
add a comment |
add a comment |
up vote
0
down vote
I would try to do it like that:
sudo apt-get remove corebird
sudo apt-get -f install
Then make sure that everything is back to normal.
After that, change repos in /etc/apt/sources.list
to vivid
and get the needed libraries through apt-get.
Install corebird
with dpkg.
Change /etc/apt/sources.list
back to trusty
.
add a comment |
up vote
0
down vote
I would try to do it like that:
sudo apt-get remove corebird
sudo apt-get -f install
Then make sure that everything is back to normal.
After that, change repos in /etc/apt/sources.list
to vivid
and get the needed libraries through apt-get.
Install corebird
with dpkg.
Change /etc/apt/sources.list
back to trusty
.
add a comment |
up vote
0
down vote
up vote
0
down vote
I would try to do it like that:
sudo apt-get remove corebird
sudo apt-get -f install
Then make sure that everything is back to normal.
After that, change repos in /etc/apt/sources.list
to vivid
and get the needed libraries through apt-get.
Install corebird
with dpkg.
Change /etc/apt/sources.list
back to trusty
.
I would try to do it like that:
sudo apt-get remove corebird
sudo apt-get -f install
Then make sure that everything is back to normal.
After that, change repos in /etc/apt/sources.list
to vivid
and get the needed libraries through apt-get.
Install corebird
with dpkg.
Change /etc/apt/sources.list
back to trusty
.
edited Dec 22 '16 at 12:17
d a i s y
3,23982244
3,23982244
answered Jun 9 '15 at 19:55
Velkan
2,1901824
2,1901824
add a comment |
add a comment |
up vote
0
down vote
I know your are looking for a general issue, but I stumbled upon this for the corebird app. You now have an easier option on 16.04+ to use corebird:
sudo snap install corebird
add a comment |
up vote
0
down vote
I know your are looking for a general issue, but I stumbled upon this for the corebird app. You now have an easier option on 16.04+ to use corebird:
sudo snap install corebird
add a comment |
up vote
0
down vote
up vote
0
down vote
I know your are looking for a general issue, but I stumbled upon this for the corebird app. You now have an easier option on 16.04+ to use corebird:
sudo snap install corebird
I know your are looking for a general issue, but I stumbled upon this for the corebird app. You now have an easier option on 16.04+ to use corebird:
sudo snap install corebird
answered Apr 25 at 1:33
dpb
5,05411648
5,05411648
add a comment |
add a comment |
up vote
0
down vote
I tried your corebird index
praz@Lenovo-E10-30:~/Downloads$ sudo gdebi corebird_1.0-1_amd64.deb
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading state information... Done
Modern, easy and fun Twitter client
Twitter client, built using GTK+.
Do you want to install the software package? [y/N]:y
Selecting previously unselected package corebird.
(Reading database ... 273217 files and directories currently installed.)
Preparing to unpack corebird_1.0-1_amd64.deb ...
Unpacking corebird (1.0-1) ...
Setting up corebird (1.0-1) ...
Processing triggers for menu (2.1.47ubuntu1.17.10.1) ...
Processing triggers for bamfdaemon (0.5.3+17.10.20170810-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for desktop-file-utils (0.23-1ubuntu3.17.10.1) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.17-1) ...
Processing triggers for libglib2.0-0:i386 (2.54.1-1ubuntu1) ...
Processing triggers for libglib2.0-0:amd64 (2.54.1-1ubuntu1) ...
Processing triggers for man-db (2.7.6.1-2) ...
after installed I can open it
I think try use gdebi, I hope this helps.
add a comment |
up vote
0
down vote
I tried your corebird index
praz@Lenovo-E10-30:~/Downloads$ sudo gdebi corebird_1.0-1_amd64.deb
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading state information... Done
Modern, easy and fun Twitter client
Twitter client, built using GTK+.
Do you want to install the software package? [y/N]:y
Selecting previously unselected package corebird.
(Reading database ... 273217 files and directories currently installed.)
Preparing to unpack corebird_1.0-1_amd64.deb ...
Unpacking corebird (1.0-1) ...
Setting up corebird (1.0-1) ...
Processing triggers for menu (2.1.47ubuntu1.17.10.1) ...
Processing triggers for bamfdaemon (0.5.3+17.10.20170810-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for desktop-file-utils (0.23-1ubuntu3.17.10.1) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.17-1) ...
Processing triggers for libglib2.0-0:i386 (2.54.1-1ubuntu1) ...
Processing triggers for libglib2.0-0:amd64 (2.54.1-1ubuntu1) ...
Processing triggers for man-db (2.7.6.1-2) ...
after installed I can open it
I think try use gdebi, I hope this helps.
add a comment |
up vote
0
down vote
up vote
0
down vote
I tried your corebird index
praz@Lenovo-E10-30:~/Downloads$ sudo gdebi corebird_1.0-1_amd64.deb
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading state information... Done
Modern, easy and fun Twitter client
Twitter client, built using GTK+.
Do you want to install the software package? [y/N]:y
Selecting previously unselected package corebird.
(Reading database ... 273217 files and directories currently installed.)
Preparing to unpack corebird_1.0-1_amd64.deb ...
Unpacking corebird (1.0-1) ...
Setting up corebird (1.0-1) ...
Processing triggers for menu (2.1.47ubuntu1.17.10.1) ...
Processing triggers for bamfdaemon (0.5.3+17.10.20170810-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for desktop-file-utils (0.23-1ubuntu3.17.10.1) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.17-1) ...
Processing triggers for libglib2.0-0:i386 (2.54.1-1ubuntu1) ...
Processing triggers for libglib2.0-0:amd64 (2.54.1-1ubuntu1) ...
Processing triggers for man-db (2.7.6.1-2) ...
after installed I can open it
I think try use gdebi, I hope this helps.
I tried your corebird index
praz@Lenovo-E10-30:~/Downloads$ sudo gdebi corebird_1.0-1_amd64.deb
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading state information... Done
Modern, easy and fun Twitter client
Twitter client, built using GTK+.
Do you want to install the software package? [y/N]:y
Selecting previously unselected package corebird.
(Reading database ... 273217 files and directories currently installed.)
Preparing to unpack corebird_1.0-1_amd64.deb ...
Unpacking corebird (1.0-1) ...
Setting up corebird (1.0-1) ...
Processing triggers for menu (2.1.47ubuntu1.17.10.1) ...
Processing triggers for bamfdaemon (0.5.3+17.10.20170810-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for desktop-file-utils (0.23-1ubuntu3.17.10.1) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.17-1) ...
Processing triggers for libglib2.0-0:i386 (2.54.1-1ubuntu1) ...
Processing triggers for libglib2.0-0:amd64 (2.54.1-1ubuntu1) ...
Processing triggers for man-db (2.7.6.1-2) ...
after installed I can open it
I think try use gdebi, I hope this helps.
edited Aug 6 at 11:33
anonymous2
3,23341846
3,23341846
answered Aug 6 at 11:14
abu-ahmed al-khatiri
87315
87315
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f633544%2fe-error-pkgproblemresolverresolve-generated-breaks-this-may-be-caused-by-he%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown