Error while installing GLPK on Windows 10 64-bit - windows

I am trying to install GLPK on Python 2.7.11 64-bit version. I am running it on Windows 10 Home 64-bit and I already installed MS Visual C++ compiler package for Python 2.7 V9. I managed to install pulp and had no problem. But when try to install GLPK it gives me this error:
What am I missing? Thanks.

Related

Cannot Install CNTK

When I try to install CNTK using pip, it gives me the following error - Could not find a version that satisfies the requirement cntk (from versions: )
No matching distribution found for cntk
I'm using Python 3.7 and windows 10.
cntk currently provides wheels for Python 2.7, 3.5 and 3.6, Linux 64 bit and w64. There is no source code hence there is no way to compile for Python 3.7.
You can try to install from sources or use Python 3.6.

Tensorflow import error (Windows10) (python3.5.3) (tensorflow-gpu #243 nightly binary)

Environment:
Windows10
Python 3.5.3 64bit
CUDA Toolkit 8.0
cuDNN v5.1(extracted to Toolkit8.0 files)
Visual Studio Community 2015
Nightly binary#243 Tensorflow GPU version (pip install tensorflow_gpu-1.2.1-cp35-cp35m-win_amd64.whl)
The package has not been installed correctly, and the file _pywrap_tensorflow.pyd is not present in the C:\...\Lib\site-packages\tensorflow\python
After I got nearly the same error as #5949, I tried mrry's tensorflow_self_check.py.
The output is:
ERROR: Failed to import the TensorFlow module.
Python version is 3.5.
TensorFlow is installed at: C:\Python\Python35\lib\site-packages\tensorflow
All required DLLs are present. Please open an issue on the
TensorFlow GitHub page: github.com/tensorflow/tensorflow/issues
However, I can import the tensorflow successfully if I use the below version:
pip install --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-0.12.0-cp35-cp35m-win_amd64.whl
So, what's wrong the tensorflow_gpu-1.2.1 version?
I really hope someone can help me solve it completely. Thank you!
I would suggest to use Anaconda for the windows, if you want to try tensorflow. The number of issues is very less.
https://www.tensorflow.org/install/install_windows
But if you really want to work without anaconda.
Check your path to Cuda, Cudnn and python.
Ensure that cudnn is v5.1
TensorFlow 1.3 or later requires cuDNN 6.
Installing the Microsoft Visual C++ 2015 Redistributable Update 3 (x64 version) can fix it.
Do let me know about after trying above steps.

Error: GTK library is not installed or installed version is not compatible

I'm trying to install the Intel XDK for Linux under CentOS 7.3 (7.3.1611)
But I'm facing a problem witch I'm not able to solve:
Message:
GTK library is not installed or installed version is not compatible
The GTK library is not installed or installed version of the library is not compatible. The graphical user interface of the product requires gtk version 2.20 or higher. Contact your system administrator to install a compliant version of gtk for the INTEL64 architecture or install the product on a compliant system.
In my OS, I've already gtk+ 2.4 installed, but the installer of Intel XDK can't see the package.
I've these packages installed:
yum install gtk*:
Package gtk2-2.24.28-8.el7.x86_64 already installed and latest version
Package gtk2-devel-2.24.28-8.el7.x86_64 already installed and latest version
Package gtk2-devel-docs-2.24.28-8.el7.x86_64 already installed and latest version
Package gtk3-3.14.13-20.el7.x86_64 already installed and latest version
Package gtk3-devel-3.14.13-20.el7.x86_64 already installed and latest version
Is there a way to solve this problem ?

ZODB 3 for 64 bit windows

I tried to install ZODB3 for 64 bit Python 2.7 with pip. This installation requires a local compiler to compile the BTrees extension. As I do not have the needed MS compiler installed:
Is there a binary 64 bit Windows installer for ZODB on Python 2.7 ? I used Google but did not succeed
Is BTrees really required or can I install ZODB3 without BTrees ?
Cherrs, Uwe.
The ZODB3 package comes with pre-compiled eggs for Windows, see the PyPI page for ZODB3.
You need to tell pip explicitly that it needs to install an egg; it normally does not support installing from an egg:
pip install --egg ZODB3
Alternatively, you could use easy_install instead.
Struggling with ZODB3 easy_install/pip/compiler woes on Windows? Try Christoph Gohlke's "Unofficial Windows Binaries for Python Extension Packages" download page:
64 and 32 bit ZODB3 binaries packaged as .exe installers are available for python 2.5/2.6/2.7: http://www.lfd.uci.edu/~gohlke/pythonlibs/#zodb3
You will need to run the appropriate zope.interface installer from the same source first: http://www.lfd.uci.edu/~gohlke/pythonlibs/#Zope.interface

Install ImageMagick on MinGW

When I install IM on MinGW I got this error
c:\Users\MumMum\Desktop\MagickCore\ImageMagick-6.7.7-0/magick/nt-base.c:1021: un
defined reference to `IsWow64Process'
How i solve this problem?
You do not specify your OS version. IsWow64Process ("Is this a Windows on Windows 64 bit process?") is only implemented in XP and later desktop OSes, and Windows 2008 and Windows 2003 SP1. See: http://msdn.microsoft.com/en-us/library/ms684139%28v=vs.85%29.aspx
In a pinch, try installing the Portable version of ImageMagick: Link

Resources