Tensorflow installation error: not a supported wheel on this platform

I too got the same problem. I downloaded get-pip.py from https://bootstrap.pypa.io/get-pip.py and then ran python2.7 get-pip.py for installing pip2.7. And then ran the pip install command with python2.7 as follows. For Ubuntu/Linux: python2.7 -m pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl For Mac OS X: python2.7 -m pip install https://storage.googleapis.com/tensorflow/mac/tensorflow-0.5.0-py2-none-any.whl This should work just fine as it did for … Read more

Does an universal cross-platform installer exists? [closed]

“Mainstream”: A shared packaging format seems elusive. However, there are a few multi-platform deployment tools available. Installsite.org has a list towards the bottom here. I guess the two most commonly used tools are (both are commercial): Advanced Installer for Java / Advanced Installer Enterprise (Windows and Mac, no Linux) Flexera InstallAnywhere (Windows, Mac, Linux) Extended … Read more

PackagesNotFoundError: The following packages are not available from current channels:

Try adding the conda-forge channel to your list of channels with this command: conda config –append channels conda-forge. It tells conda to also look on the conda-forge channel when you search for packages. You can then simply install the two packages with conda install slycot control. Channels are basically servers for people to host packages … Read more

Why does MSI require the original .msi file to proceed with an uninstall?

Fix Broken Uninstall: You can try the newest FixIt Uninstall tool from Microsoft if you have problems uninstalling an MSI. And one more link: Uninstalling an MSI file from the command line without using msiexec (a plethora of different ways to uninstall an MSI). UPDATE: This new support tool (this tool is now also deprecated) … Read more