TensorfloTensorflow installation error: not a supported wheel on this platformw 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: For Mac OS X: This should work just fine as it did for me 🙂 I followed these instructions from here.

Dealing with multiple Python versions and PIP?

The current recommendation is to use python -m pip, where python is the version of Python you would like to use. This is the recommendation because it works across all versions of Python, and in all forms of virtualenv. For example: Previous answer, left for posterity: Since version 0.8, Pip supports pip-{version}. You can use it the same as easy_install-{version}: EDIT: pip … Read more

PIP (Python) : ImportError: cannot import name _remove_dead_weakref

I’m pretty sure the reason for this error is how you’re installing python and that you’ve most likely copied your installation from somewhere else .. or you’re renaming folders .. or you’ve an invalid python installation in your environmental path. If you’re looking to copy the python folder about, don’t install it ‘for all users’ .. just … Read more

Is it safe to delete ~/.cache/pip directory

According to pip’s caching documentation from version 6 you can use the –no-cache-dir option. But that didn’t help me as I was using a wrapper (pinax starter projects) that runs pip in the background to install several packages. Since I kept getting an pip.exceptions.HashErrors (‘hashes don’t match the requirement file) and I didn’t want to temper with its code … Read more

“ssl module in Python is not available”

I use Linux distros and face the problem since the new installation of Python 3.6. I tried a couple of solution and finally solved the problem. The steps I followed are as below. On Debian like distros Change the directory to the Python3.6 location In the module directory, open the Setup file with your preferred text editor … Read more