[SOLVED] pip doesn't install applications correctly

I'm trying to install some programs with pip. However, there is something wrong with it because the programs I install do not work correctly and there are loads of syntax errors. I am not sure if the problem stems from python.
Here is the output from
pip install hyde
Downloading/unpacking hyde
Real name of requirement hyde is hyde
Running setup.py egg_info for package hyde
Requirement already satisfied (use --upgrade to upgrade): argparse in /usr/lib/python3.2/site-packages (from hyde)
Requirement already satisfied (use --upgrade to upgrade): commando in /usr/lib/python3.2/site-packages (from hyde)
Requirement already satisfied (use --upgrade to upgrade): jinja2 in /usr/lib/python3.2/site-packages (from hyde)
Requirement already satisfied (use --upgrade to upgrade): pyYAML in /usr/lib/python3.2/site-packages (from hyde)
Requirement already satisfied (use --upgrade to upgrade): markdown in /usr/lib/python3.2/site-packages (from hyde)
Requirement already satisfied (use --upgrade to upgrade): smartypants in /usr/lib/python3.2/site-packages (from hyde)
Requirement already satisfied (use --upgrade to upgrade): pygments in /usr/lib/python3.2/site-packages (from hyde)
Requirement already satisfied (use --upgrade to upgrade): typogrify-hyde in /usr/lib/python3.2/site-packages (from hyde)
Installing collected packages: hyde
Running setup.py install for hyde
Installing hyde script to /usr/bin
File "/usr/lib/python3.2/site-packages/hyde/ext/templates/jinja.py", line 107
print u"Requires AsciiDoc library to use AsciiDoc tag."
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/ext/plugins/markings.py", line 27
return u'^§§+\s*([A-Za-z0-9_\-]+)\s*$'
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/ext/plugins/tagger.py", line 185
meta_text = u''
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/ext/plugins/stylus.py", line 112
except subprocess.CalledProcessError, e:
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/ext/publishers/pypi.py", line 52
print "Username: ",
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/ext/publishers/pyfs.py", line 50
print "Username: ",
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/engine.py", line 40
except HydeException, he:
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/lib/pygments/rst_directive.py", line 79
parsed = highlight(u'\n'.join(self.content), lexer, formatter)
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/tests/ext/test_textlinks.py", line 46
text = u"""
{%% markdown %%}
[[!!img/hyde-logo.png]]
* [Rich object model][hyde objects] and
[overridable hierarchical metadata]([[ %(plugins)s ]]) thats available for use in
templates.
* Configurable [sorting][], filtering and grouping support.
[hyde objects]: [[ %(objects)s ]]
[sorting]: [[%(sorter)s]]
{%% endmarkdown %%}
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/tests/ext/test_syntext.py", line 35
text = u"""
~~~~~~~~css~~~~~~~
.body{
background-color: white;
~~~~~~~~~~~~~~~~~~
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/tests/ext/test_tagger.py", line 220
print q
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/tests/ext/test_images.py", line 53
text = u"""
<img src="/media/img/%s">
""" % IMAGE_NAME
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/tests/ext/test_markings.py", line 56
text = u"""
===
is_processable: False
===
{% filter markdown|typogrify %}
§§ heading
This is a heading
=================
§§ /heading
§§ content
Hyde & Jinja
§§ /
{% endfilter %}
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/tests/test_fs.py", line 290
utxt = u'åßcdeƒ'
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/tests/test_plugin.py", line 26
print "NoReturnPlugin"
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/tests/test_jinja2template.py", line 50
users = map(User, [u'John Doe', u'Jane Doe', u'Peter Somewhat'])
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/plugin.py", line 340
except subprocess.CalledProcessError, error:
^
SyntaxError: invalid syntax
File "/usr/lib/python3.2/site-packages/hyde/server.py", line 198
except Exception, exception:
^
SyntaxError: invalid syntax
Successfully installed hyde
Cleaning up...
and if I try to run hyde:
Traceback (most recent call last):
File "/usr/bin/hyde", line 9, in <module>
load_entry_point('hyde==0.8.4', 'console_scripts', 'hyde')()
File "/usr/lib/python3.2/site-packages/pkg_resources.py", line 337, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/lib/python3.2/site-packages/pkg_resources.py", line 2280, in load_entry_point
return ep.load()
File "/usr/lib/python3.2/site-packages/pkg_resources.py", line 1990, in load
entry = __import__(self.module_name, globals(),globals(), ['__name__'])
File "/usr/lib/python3.2/site-packages/hyde/main.py", line 6, in <module>
from hyde.engine import Engine
File "/usr/lib/python3.2/site-packages/hyde/engine.py", line 40
except HydeException, he:
^
SyntaxError: invalid syntax
Now running
pip install wok
it doesn't even install and I get:
Downloading/unpacking wok
Real name of requirement wok is wok
Downloading wok-0.8.0.tar.gz
Running setup.py egg_info for package wok
Traceback (most recent call last):
File "<string>", line 14, in <module>
File "/home/dennis/build/wok/setup.py", line 5, in <module>
from wok import version
File "wok/__init__.py", line 1
version = u'0.8.0'
^
SyntaxError: invalid syntax
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 14, in <module>
File "/home/dennis/build/wok/setup.py", line 5, in <module>
from wok import version
File "wok/__init__.py", line 1
version = u'0.8.0'
^
SyntaxError: invalid syntax
Command python setup.py egg_info failed with error code 1
Storing complete log in /root/.pip/pip.log
Is this a problem with pip or python?
Last edited by thehodapp (2011-12-04 07:56:28)

You are trying to install Python applications that are not compatible with Python 3.
Try using the pip2 command from the python2-pip package.

Similar Messages

  • [Solved] Yaourt doesn't install dependencies?

    I'm trying to get yaourt to install netflix-desktop and after asking if i want to edit PKGBUILD it states the dependencies.  The first few are already installed, but then it hits the ones that are not on the system. Problem is that it states that it is "building from AUR" for all of them, but when I get to installing netflix-desktop, it says they are not found.  Do i seriously have to manually go through all dependencies and install them?
    There must be a way to get yaourt to install them by itself.
    Last edited by Xerict (2013-11-22 20:55:53)

    Here is the output:
    [xxxx@arch ~]$ yaourt -S netflix-desktop
    ==> Downloading netflix-desktop PKGBUILD from AUR...
    x NetflixIcon.png
    x netflix-desktop.install
    x netflix-desktop.desktop
    x PKGBUILD
    x netflix-desktop.launcher
    Comment by anish (2013-11-05 08:22)
    You can ignore the fixme: errors, they're just informative and do not affect netflix. What is the wine-silverlight version you are running ?
    Comment by kjslag (2013-11-16 23:06)
    I was using wine-silverlight 1.7.5-2. I just upgraded to 1.7.6-1 and now it works. thanks!
    Comment by kjell (2013-11-18 22:28)
    Is there any way to stop it from starting @compholio.com. Changing the homepage isn't working.
    Comment by anish (2013-11-18 22:36)
    @kjell Yes. Change line 29 in /usr/bin/netflix-desktop to whatever you like, or launch netflix-desktop as :
    netflix-desktop URL="www.foo.com"
    Comment by kjell (2013-11-22 07:32)
    @anish Thanks, I have it changed to netflix.com now.
    netflix-desktop 0.8.5-6 (Mon Nov 19 20:13:54 CST 2012)
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> netflix-desktop dependencies:
    - ttf-ms-fonts (already installed)
    - zenity (already installed)
    - wget (already installed)
    - python2-pyxattr (already installed)
    - wine-silverlight>=1.7.6-1 (building from AUR)
    - wine-browser-installer (building from AUR)
    - lib32-libsm (building from AUR)
    - lib32-alsa-lib (building from AUR)
    - lib32-openal (building from AUR)
    - lib32-mpg123 (building from AUR)
    - lib32-libpng12 (building from AUR)
    - lib32-libpng (building from AUR)
    - lib32-libxcomposite (building from AUR)
    ==> Edit netflix-desktop.install ? [Y/n] ("A" to abort)
    ==> ---------------------------------------------------
    ==> n
    ==> Continue building netflix-desktop ? [Y/n]
    ==> -----------------------------------------
    ==>
    ==> Building and installing package
    ==> Install or build missing dependencies for netflix-desktop:
    error: target not found: lib32-libpng12
    error: target not found: lib32-mpg123
    error: target not found: lib32-alsa-lib
    error: target not found: lib32-libxcomposite
    error: target not found: lib32-libpng
    error: target not found: lib32-openal
    error: target not found: lib32-libsm
    ==> Restart building netflix-desktop ? [y/N]
    ==> ----------------------------------------
    ==>
    It just looks like it SAID it was installing dependencies, but was totally lying...

  • [solved]pacman doesn't install anything

    hi
    my pacman not work! then i say install any package it will download first and after says that the package is corrupt!!! (note that i can extract them by "tar -xvf")
    pacman output:
    pacman -S xorg
    resolving dependencies...
    looking for inter-conflicts...
    Targets (41): xf86-video-vesa-2.3.0-3 xorg-docs-1.6-1
    xorg-fonts-alias-1.0.2-1 xorg-fonts-100dpi-1.0.1-3
    xorg-fonts-75dpi-1.0.1-3 xorg-res-utils-1.0.3-3
    libpciaccess-0.12.1-1 xorg-fonts-misc-1.0.1-1
    xorg-server-common-1.9.4-1 xf86-input-evdev-2.6.0-1
    xorg-server-1.9.4-1 xorg-iceauth-1.0.4-1 xorg-sessreg-1.0.6-1
    xorg-xcmsdb-1.0.3-1 xorg-xbacklight-1.1.2-1 xorg-xgamma-1.0.4-1
    xorg-xhost-1.0.4-1 xorg-xinput-1.5.3-1 xorg-xmodmap-1.0.5-1
    xorg-xrandr-1.3.4-1 mcpp-2.7.2-2 xorg-xrdb-1.0.8-1
    xorg-xrefresh-1.0.4-1 xorg-xset-1.2.1-1 xorg-xsetroot-1.1.0-1
    xorg-server-utils-7.6-1 xorg-twm-1.0.6-1 dmxproto-2.3.1-1
    libdmx-1.1.1-1 xorg-xdpyinfo-1.2.0-1 xorg-xdriinfo-1.0.4-1
    xorg-xev-1.1.0-1 xorg-xlsatoms-1.1.0-1 xorg-xlsclients-1.1.1-1
    xorg-xvinfo-1.1.1-1 xorg-xwininfo-1.1.1-1 xorg-utils-7.6-6
    xorg-xinit-1.3.0-2 xorg-luit-1.1.0-1 xbitmaps-1.1.1-1
    xterm-267-1
    Total Download Size: 0.00 MB
    Total Installed Size: 48.76 MB
    Proceed with installation? [Y/n] y
    checking package integrity...
    error: failed to commit transaction (invalid or corrupted package)
    xf86-video-vesa-2.3.0-3-i686.pkg.tar.xz is invalid or corrupted
    xorg-docs-1.6-1-any.pkg.tar.xz is invalid or corrupted
    xorg-fonts-100dpi-1.0.1-3-any.pkg.tar.xz is invalid or corrupted
    xorg-fonts-75dpi-1.0.1-3-any.pkg.tar.xz is invalid or corrupted
    libpciaccess-0.12.1-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-fonts-misc-1.0.1-1-any.pkg.tar.xz is invalid or corrupted
    xorg-server-common-1.9.4-1-i686.pkg.tar.xz is invalid or corrupted
    xf86-input-evdev-2.6.0-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-server-1.9.4-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-iceauth-1.0.4-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-sessreg-1.0.6-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xcmsdb-1.0.3-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xbacklight-1.1.2-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xgamma-1.0.4-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xhost-1.0.4-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xinput-1.5.3-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xmodmap-1.0.5-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xrandr-1.3.4-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xrdb-1.0.8-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xrefresh-1.0.4-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xset-1.2.1-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xsetroot-1.1.0-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-server-utils-7.6-1-any.pkg.tar.xz is invalid or corrupted
    xorg-twm-1.0.6-1-i686.pkg.tar.xz is invalid or corrupted
    dmxproto-2.3.1-1-any.pkg.tar.xz is invalid or corrupted
    libdmx-1.1.1-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xdpyinfo-1.2.0-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xdriinfo-1.0.4-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xev-1.1.0-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xlsatoms-1.1.0-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xlsclients-1.1.1-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xvinfo-1.1.1-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-xwininfo-1.1.1-1-i686.pkg.tar.xz is invalid or corrupted
    xorg-utils-7.6-6-any.pkg.tar.xz is invalid or corrupted
    xorg-xinit-1.3.0-2-i686.pkg.tar.xz is invalid or corrupted
    xorg-luit-1.1.0-1-i686.pkg.tar.xz is invalid or corrupted
    xbitmaps-1.1.1-1-any.pkg.tar.xz is invalid or corrupted
    xterm-267-1-i686.pkg.tar.xz is invalid or corrupted
    Errors occurred, no packages were upgraded.
    how can i fix it? plz help
    Last edited by sinoohe (2011-02-10 20:25:51)

    wonder wrote:ok, let me guess. you made a symlink to liblzma.so.something because pacman was broken? if yes, pacman -S libarchive && pacman -Syu and remove the symlink that you made
    ooh thanx!! the answer is yes
    Last edited by sinoohe (2011-02-10 19:28:37)

  • Cisco ISE 1.2 Ise Application doesn´t install

    Hello,
    I am trying to install Cisco ISE on a VMWare Paltform, and the installation goes OK for the ADE-OS (The Os is installed, but the ISE application doesn´t install.
    Any Hint in how to solve that ?
    BR,
    Julio

    Hi all,
    Thank for your answers, the problem was that the ISO image on the Cisco software repository was corrupted. I finally did a md5 check, and downloaded the image 4 times.
    The for images download matched the md5 checksums between themselves, but not the Cisco webpage. Finally a TAC engineer had to publish the image form me, and when downloaded from this link It matched the CCO md5 and it worked fine.
    BR,
    Julio.

  • Please a simple problem but I don't know how to solve it. After installing 16 gb of ram all is good but when I turn on the computer it is a window signaling that all is correct. How is possible to delete once and for all that window? Thank you

    Please a simple problem but I don't know how to solve it. After installing 16 gb of ram all is good but when I turn on the computer it is a window signaling that all is correct. How is possible to delete once and for all that window? Thank you

    Well then maybe you could take a screenshot because the appearance of such a window is news to me.
    Also post your OS X version and what model Mac you have. The more detail, the better. Thanks.
    To take a screenshot hold ⌘ Shift 4 to create a selection crosshair. Click and hold while you drag the crosshair over the area you wish to capture and then release the mouse or trackpad. You will hear a "camera shutter" sound. This will deposit a screenshot on your Desktop.
    If you can't find it on your Desktop look in your Documents or Downloads folder.
    When you post your response, click the "camera" icon above the text field:
    This will display a dialog box which enables you to choose the screenshot file (remember it's on your Desktop) and click the Insert Image button.
    ⌘ Shift 4 and then pressing the space bar captures the frontmost window.
    ⌘ Shift 3 captures the entire screen.
    Drag the screenshot to the Trash after you post your reply.

  • Can't open iTunes, it said it has failed to start because MSVCR80.dll was not found, and I re-installed application many times and still problem persist, how do I solve this?

    can't open iTunes, it said it has failed to start because MSVCR80.dll was not found, and I re-installed application many times and still problem persist, how do I solve this?

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • HT4628 My airport show that the airport card doesn't install. How can I solve this symptom? It's usable 2 days ago.

    My airport show that the airport card doesn't install. How can I solve this symptom? It's usable 2 days ago.

    Usually, if your Mac tells you "no AirPort card installed", it's because of power not properly being supplied to the AirPort card. Sometimes this symptom is related to hardware issues.
    Reset the SMC of your computer. There are different ways of resetting, depending on the Mac you are using.

  • Get-WmiObject -class win32_product doesn't list all installed Applications

    Hello
    in my test win server 2012 R2 datacenter, i have installed some applications such as mozilla firefox, Advanced renamer, office, Acrobat reader.
    Get-WmiObject -class win32_product
    Get-CimInstance -class win32_product
    when i run either of the following commands to get the list of all installed Applications, system doesn't list some of them in result . for example office & Google chrome & some others
    are shown but Mozilla Firefox & Advanced renamer & some others
    are not ! 
    a searched a lot but found nothing.
    any idea?

    You need to run as 32 bit to get the 32 bit applications like firefox and Acrobat.  Run a 32 bit session and the alternates will be available or...get a script that can read this from the registry
    https://gallery.technet.microsoft.com/scriptcenter/Get-Installed-Application-615fa73a
    ¯\_(ツ)_/¯
    thanks for great guide.
    i also fund these:
    http://myitforum.com/cs2/blogs/gramsey/archive/2011/01/25/win32-product-is-evil.aspx
    https://gallery.technet.microsoft.com/scriptcenter/Get-RemoteProgram-Get-list-de9fd2b4

  • When i want to put an application on my ipad i get the icone but it doesn't install itself what should i do?

    i get the icone application but it doesn't install it, what should i do ? help please.... thank you

    Is this an App you have Purchased from the App Store...

  • I am trying to download Itunes to my new Toshiba computer and it keeps saying Apple Application Support suspended and won't let me "undo" so I say no and it doesn't install....any options or a?

    I am trying to download Itunes to my new Toshiba computer and it keeps saying Apple Application Support suspended and won't let me "undo" so I say no and it doesn't install....any options or a?

    I suspect that you are saying that you can't download/install the latest version of iTunes. 
    All I can say is try removing and reinstalling the Apple software using the following:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    If you have further problems with installing Itunes I suggest you post in the iTunes forum since you have an iTunes problem, not an iPod problem.  Also report the wording of any error messages. What they say is importent on resolving them.

  • Programs bookmark in pcmanfm doesn't display applications

    like in topic i click on bookmark "programs", it open address "menu://applications/"
    but it's empty. i think it supose to show some activators.
    i want to say also that, pcmanfm doesn't see applications at all.
    i  mean when i click on some file " open with" the installed programs list is empty.
    same happens when i run libfm-pref-apps.
    how can i fix these issues?

    Hi, I solved this by installing "xdg-user-dirs-gtk" and run "xdg-user-dirs-gtk-update"
    I think that this is caused by the change of some localizations and not to update properly the list of file names , the problem happened me when I installed xdg-menu and translations to spanish (because I'm speak spanish and not understand very well the english) so it only need to update the list of localized menus, thing that doesn't do automaticaly in other enviroments that isn't GNOME or KDE
    I'm sorry for edit this old post but i have to correct it.
    To make the PcManFM's applications sidebar work, you have to run lxpanel. and then launch pcmanfm from it, that's all folks.
    Now i can sleep again
    Last edited by joseperezc (2011-08-22 22:15:39)

  • Prerequisiteinstaller.exe error - unable to install Application Server Role, Web Server (IIS) Role

    Windows Server 2012 R2 running on Hyper-V VM.  File services, App server & IIS roles installed
    SQL Server 2012 installed
    Tried:
    kb 2765260 method 1 which is kb 2771431 which ends with "not applicable to computer"
    kb 2765260 method 2 with no effect (this was power shell commands for PC's connected to the internet)
    One post suggested "aspnet_regii - enable -i" but my OS doesn't have aspnet_regii on it (not sure what that implies)
    One post suggested ServerManagerCmd.exe needed to be installed which sounds true as shown below (but where do I find this exe?)
    There are some errors in the log file,  I only included the portions where the errors are listed.  The initial lines are at the top of the log file, then I skipped to the section where the other errors were.  I can include the whole log if
    it becomes necessary.
    9:47:11 Processor architecture is (9)
    9:47:11 Reading the following string value/name...
    9:47:11 Common Startup
    9:47:11 from the following registry location...
    9:47:11 SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    9:47:11 The value is...
    9:47:11 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    9:47:11 Trying to remove the startup task if there is any.
    9:47:11 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    9:47:11 Error: Startup task doesn't exist. This is not a continuation after a restart.
    9:47:11 Locating the following command line arguments file:
    9:47:11 E:\PrerequisiteInstaller.Arguments.txt
    9:47:11 Error: This file does not exist
    9:47:11 Details of the current operating system:
    9:47:11 Check whether the following prerequisite is installed:
    9:47:11 Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    9:47:11 Reading the following DWORD value/name...
    9:47:11 IsInstalled
    9:47:11 from the following registry location...
    9:47:11 SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    9:47:17 Beginning download/installation
    9:47:17 Created thread for installer
    9:47:17 "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\1\PreE0DB.tmp.XML"
    9:47:17 Error: Unable to install (2)
    9:47:17 Error: [In HRESULT format] (-2147024894)
    9:47:17 Last return code (2)
    9:47:17 Reading the following DWORD value/name...
    9:47:17 Flags
    9:47:17 from the following registry location...
    9:47:17 SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    9:47:17 Reading the following string value/name...
    9:47:17 PendingFileRenameOperations
    9:47:17 from the following registry location...
    9:47:17 SYSTEM\CurrentControlSet\Control\Session Manager
    9:47:17 Reading the following registry location...
    9:47:17 SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    9:47:17 Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    9:47:17 Last return code (2)
    9:47:17 Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any command line options.
    9:47:17 Cannot retry
    I'm presuming the first 2 errors are OK and just indicate optional startup modes for prerequisiteinstaller.exe
    The 2nd set of errors seems more serious.  I don't see ServerManagerCmd.exe on my PC that's listed in the error
    I don't understand the last error which I'm supposing triggered the listed error even though there are other errors in the log.
    Many of the existing posts don't match the configuration I'm using, and the ones that do match didn't seem to provide a usable answer.  Any help is appreciated.  Do these problems exist using Sever 2012 Standard?  I will try that, but would
    like to resolve the issue here with R2.
    Thanks.
    Best Regards,
    Alan

    ServerManagerCMD.exe is a deprecated utility and (as far as I know) is only found on Server 2008 versions, so I'm surprised it's needed for the preinstaller.  Are you trying to install SharePoint 2010?
    Running this page through Google Translate should give you an clearer idea on getting this installed.
    http://blog.hand-net.com/sharepoint/2010-06-10-error-lors-de-linstallation-des-office-web-apps-2010-sur-windows-7.htm
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • [SOLVED] akregator doesn't show images in the preview pane

    I have three different PCs with Arch and kdemod-legacy (that is, kde 3.5.9) and on all of them I use akregator (a RSS/Atom feed reader).
    One of the feed I subscribed is from an image board: when new images are uploaded to the site, I'm notified and clicking on the link in the articles section of akregator I can see in the lower pane a thumbnail of the image.
    However this doesn't happen on my third pc: I *suppose* the installed applications and libraries are the same between all the machines, and the akregator options seems to be same as well.
    Does anybody have an idea about this?
    Thanks in advance for your time.
    Last edited by daneel971 (2008-09-03 06:11:17)

    Thanks for your reply.
    Daren wrote:do you have the option set to load the full article in the pane?
    Without this, it just displays an overview.
    That's right - I don't use that option because it's usually unnecessary: the overview usually does show a thumbnail of the image, and I can avoid loading the entire page.
    Anyway, I noticed that switching from RSS to Atom (for the same feed, I mean) solves the issue - so maybe it was related to the type of feed used.

  • Installed application works fine for administrators, not for users - LV7.1.1

    Hi,
    Someone must have posted this before, but I can't find it anywhere after much searching of the knowlege base and user forums. Feel free to point me in the right direction...
    I have an application that loads and plays a wav file, and applies a filter while playing it back. The user may select the filter being used from the control panel. Filtering is done in1/8 second chunks, so changes in the filter appear instantanious.
    I'm using LabView 7.1.1  (i.e. 7.1 with the 7.1.1 maintainence release applied). Filters have been created with the Digital Filter Design tool in the Signal Processing toolset.
    I have created an installer using the application builder in LabVIEW. The runtime engine is included in the installation, as are the filter files.
    Once installed on a target machine the application works fine for anyone logged on with administrator rights/privileges. For anyone with user or guest privileges the filter either doesn't re-load or isn't applied to the wav file regardless of the user's efforts on the control panel.
    The audio file is however loading and playing back.
    This problem is seen on W2k, WinXP Pro SP1 and Win XP Pro SP2. I can't comment on other O/S, that's all I have available to test on. 
    This is tricky to debug, as in the installed application you can't view or step through the source code.
     Your ideas and observations much appreciated.
    Bandit

    You're right Sacha, it takes almost no time to rate an answer. Only 4* for you, as the info is interesting and relevant, but in this instance I wanted to stick with read only access. These filter files are an integral part of my application, and I certainly don't want users changing them .
    A little further investigation has provided the ideal fix for my needs. Burrowing down into the Read DFD coefficients.vi provided in the signal processing toolset I found the files are opened for read & write. The mode isn't actually wired, so read & write is selected as it's the default. As Windows only allows read access in this location to those with user privileges the files won't open. 
    I now have a modified version of Read DFD coefficients.vi that has the files opened for read only (this has to be done in 2 places).  I have tested this on Win2k and XP SP2, and it works exactly as I require. This is different to the user in your other thread Sacha, as they specifically want everyone to be able to write to their files.  
    Perhaps it's a question for the LV developers - should the Read DFD coefficients.vi be changed to only give read access? (assuming it hasn't been changed already in V8). I'm in no place to assess the impact on other users. As the .vi is only a read function, which opens the file, reads the coefficients and closes the file again I can't see how it would be a problem though - the write access isn't required.
    Thanks to all for their help on this. Problem solved, and I'm a happy bunny .  (Thinks - what about some bunny smilies on the forum?)
    Bandit

  • Installing Application Server 10g 2 on Unbreakable linux

    Hello all,
    I wish to install Application Server 10g 2 on Oracle Unbreakable Linux EL5. Could someone please let me know if there are installation instructions for the App Server on EL5?
    Also, when I go to [http://www.oracle.com/technology/software/products/ias/htdocs/101202.html] to download release 2 for Linux x86, the tooltip has the file named as "as_linux_x86_portal_wireless_101202_disk1.cpio". Does anyone know if this is actually the App Server???
    Last, but not least, I downloaded disk 1(I'm assuming it's the correct software) and tried to "unzip" it in /home/oracle to run the Universal Installer and Oracle Unbreakable Linux doesn't recognize the file extension .cpio. So my last question then would be is Oracle Unbreakable Linux even a suitable version of Linux to install the App Server on? Because it seems strange that the software Oracle has on its website can't even be opened on their own flavor of Linux.
    Any help answering my questions will be appreciated.
    -Thank You,
    David Wrbelis

    Hi,
    I did just a while ago.
    If you got a joice, use Unbreakable Linux 4 (RHEL4), 10g2 on Unbreakable Linux version 5 is not officially supported by Oracle!
    At least my Server was complaining about the system. After extracting the .cpio you can either use
    ./runInstaller -ignoreSysPrereqs
    or go to redhat-release file (I'm not sure in the moment, I believe its /etc/redhat-release) and set it to version 4 instead of 5 until installation is done.
    You will get an error during installation, when it appears rename libXtst.so.6.0.0 to libXtst.so.6.0 and press retry, the installation will finish successfully.
    You might get an error that opmn could not start. Start it manually, the error won't appear, you can ignore it (press continue).
    Your config wizards should ALL be successful!
    About the file you downloaded, I was using a different one, since I only needed Forms and Reports service, you might want to have the full Server, so there are more than one correct downloads for 10g2. You need to look carefully what features you need or load full version (which would be several cds I believe).
    Regards
    Edited by: n00b on 19.09.2008 09:32

Maybe you are looking for

  • Sound Icon Greyed Out - Midi AutoAggDevice auto-created

    Whenever I restart my computer or log out/back in, the sound icon in the menu bar is greyed out. When I check the sound preferences in system preferences, it says that the output is: "AutoAggDevice". I gain back control after selecting "Internal Spea

  • Prob with web pages loading w. Chrome and Firefox

    I am having problems with Google Chrome and Mozilla FireFox completely loading some internet pages. I have to hit the refresh button over and over and sometimes that does not even work. I have cleared all of the browswer history and that was not effe

  • Error while Transfer Object

    Hi, I have a Data-Transfer-Object which is transfered between a client and an EJB. While this transfer I get this exception: java.rmi.MarshalException: CORBA MARSHAL 1398079699 Maybe; nested exception is:      org.omg.CORBA.MARSHAL: Unable to read va

  • Where is the return arrow that use to be in the top left corner

    where is the return icon that use to be in the top left of the web page. how do i return to the previous page

  • App of the week

    How could I know what are all the app of the week apps since 1 year