Installing Dm-Types on Windows. (Win7 X64)

Installing dm-types on Windows. (Win7 x64)

It looks the the spaces in the path for ruby are screwing up the makefile. Maybe try creating a symlink on Windows temporarily, like:

mklink /d c:\ruby "C:\Program Files (x86)\Ruby\Ruby193"

and then try installing. You can delete the symlink after installing.

C:\ruby\bin\gem install dm-types

Installing Telerik to Visual Studio 2008 Toolbar throws System.Web.Extensions Error

Ok, Turns out I still had to install ASP.NET AJAX 1.0 into my system. I suppose I thought this stuff was all integrated now.

I did a Google Search, and came up to the asp.net forums where I was directed to the download.

Publish Portable and Self-Contained .NET Application in Windows 7

Unfortunately Windows 7 SP1 is supported only with Extended Security Updates installed. The same statement also applies to net6.

I managed to get it to work (with net6) by installing those updates from the Microsoft Update Catalog:

  • Windows6.1-KB3063858-x64.msu
  • Windows6.1-KB2999226-x64.msu
  • Win7AndW2K8R2-KB3191566-x64.zip

this is Windows Management Framework 5.1

  • Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.29.30135

In addition, in some installation, I had to also install PowerShell v7.2.1 .

I was unable to run the application on a fresh install of Windows 7 SP1 in any way.

Install a Windows service using a Windows command prompt?

Navigate to the installutil.exe in your .net folder (for .net 4 it's C:\Windows\Microsoft.NET\Framework\v4.0.30319 for example) and use it to install your service, like this:

"C:\Windows\Microsoft.NET\Framework\v4.0.30319\installutil.exe" "c:\myservice.exe"

Regarding a comment, for 64bit apps, use below:

C:\Windows\Microsoft.NET\Framework64\v4.0.30319\installutil.exe

Installation .Net 1.1. on 64-bit win 7

I encountered same problem in my PC.
To configure your Application Pool, open the Application Pool in IIS Manager bring up Advanced Options and Enable 32 Bit.

Setting up pip in Windows 7 64-bit

I think during your attempts you have messed up your Python setup somehow. While I am sure that you can get things working with just the CPython installer from python.org (I and many others did this), I strongly recommend to start over (cleanly remove what you have so far) and install one of the Python distributions that have some more features, for example:

  • ActivePython
  • the Enthought Python Distribution (EPD) or
  • Python(x,y).

They come with several additional packages installed, including pip. Their installer also sets up your Windows PATH properly. So, after running the installer, you can just go ahead, start cmd.exe and run python or pip install ...

The free version of EPD can be found here. I myself have made good experiences with EPD but also with Python(x,y). Here is a list of "plugins" that the standard Python(x,y) installer brings along. Note that for Windows both, EPD and Python(x,y), are only available as 32 Bit version ... however, ActivePython for Windows 64-bit is free (PyPM packages are not free for 64-bit). Depending on your needs, this might not be an issue.

why VS 2010 fails to install in windows 7 ?

[09/02/12,17:17:22] Microsoft Visual Studio 2010 Ultimate - ENU: [2] ERROR_INSTALL_PACKAGE_INVALID returned in CRootComponent::Install; the following file is invalid: h:\vs_setup.msi

Your installer is corrupt.



Related Topics



Leave a reply



Submit