php,debian,failed-installation
“It is not installable“ means APT does not know where to get this package. You either have incompatible sources in /etc/apt or you need to update the package cache with apt-get update.
python,xcode,python-imaging-library,failed-installation
Did you uninstall PIL first? Try: pip uninstall pil pip uninstall pillow brew install libtiff libjpeg webp little-cms2 pip install pillow See http://pillow.readthedocs.org/installation.html for more information....
android,parse-error,failed-installation
A meta-data element must have a value or a resource. Remove the <meta-data android:name="android.support.PARENT_ACTIVITY" /> or add an android:value attribute to it....
python,ssl,pip,failed-installation
The error seems related the SSL Python's certificate as stated here. Certificates where updated because of the Heartbleed known bug. You need to update/reinstall your Python.
visual-studio-2013,failed-installation
I checked your log and I find the following: Error 0x80091007: Hash mismatch for path: C:\ProgramData\Package Cache.unverified\Preparation_Uninstall_vsupdate_KB2829760, expected: 99574152B1D10D8518E3AFF5FFD4C5A0728238AF, actual: 3F5C631F9622CD4062BE85385E22D981BDEC5C46 Please check the following MSDN link to solve the issue: http://blogs.msdn.com/b/heaths/archive/2014/05/01/incorrect-hash-value-when-installing-visual-studio-2013-update-2.aspx Let me know if that help you....
android,gradle,failed-installation
There is an extra space in your PATH just after the semicolon: ...; C:\Users\shenj\Downloads\gradle-2.4-all\gradle-2.4\bin ^ I believe it is the cause....
mysql,ruby-on-rails,ruby,installation,failed-installation
If your terminal gives ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES), then you definitely have a password in place. You have probably forgotten it . Also, go to config/database.yml file and fill in your mysql username and password there if you remember. Also, if you still...
linux,python-2.7,pip,failed-installation,urllib3
As indicated in the last row, you don't have enough permission to execute the command. Try this (I assume that you're using Ubuntu/Debian): sudo pip install urllib3 ...
wix,updates,bootstrapper,failed-installation
This was reported at http://wixtoolset.org/issues/3890/. I just recently fixed it, the next WiX build shouldn't spawn a large number of processes. However, the underlying problem was that Burn was receiving a command line that CommandLineToArgvW couldn't parse. You need to make sure that all double quotes are properly escaped, and...
python,encryption,cryptography,pycrypto,failed-installation
There are binary packages here Prebuilt Python Binaries for Windows If you are using python 3.4 pip is already installed. If you don't: To install pip download this file pypi After you download it, run it with python get-pip.py. Add setx PATH "%PATH%;C:\Pythonx\Scripts" where x is your python version or...