filename.whl is not supported wheel on this platform
I would like to install scipy-0.15.1-cp33-none-win_amd64.whl
that I have saved to local drive. I am using:
pip 6.0.8 from C:Python27Libsite-packages
python 2.7.9 (default, Dec 10 2014, 12:28:03) [MSC v.1500 64 bit (AMD64)]
when I run:
pip install scipy-0.15.1-cp33-none-win_amd64.whl
I get the following error:
scipy-0.15.1-cp33-none-win_amd64.whl is not supported wheel on this platform
I would like to know what the problem is?
python pip
add a comment |
I would like to install scipy-0.15.1-cp33-none-win_amd64.whl
that I have saved to local drive. I am using:
pip 6.0.8 from C:Python27Libsite-packages
python 2.7.9 (default, Dec 10 2014, 12:28:03) [MSC v.1500 64 bit (AMD64)]
when I run:
pip install scipy-0.15.1-cp33-none-win_amd64.whl
I get the following error:
scipy-0.15.1-cp33-none-win_amd64.whl is not supported wheel on this platform
I would like to know what the problem is?
python pip
add a comment |
I would like to install scipy-0.15.1-cp33-none-win_amd64.whl
that I have saved to local drive. I am using:
pip 6.0.8 from C:Python27Libsite-packages
python 2.7.9 (default, Dec 10 2014, 12:28:03) [MSC v.1500 64 bit (AMD64)]
when I run:
pip install scipy-0.15.1-cp33-none-win_amd64.whl
I get the following error:
scipy-0.15.1-cp33-none-win_amd64.whl is not supported wheel on this platform
I would like to know what the problem is?
python pip
I would like to install scipy-0.15.1-cp33-none-win_amd64.whl
that I have saved to local drive. I am using:
pip 6.0.8 from C:Python27Libsite-packages
python 2.7.9 (default, Dec 10 2014, 12:28:03) [MSC v.1500 64 bit (AMD64)]
when I run:
pip install scipy-0.15.1-cp33-none-win_amd64.whl
I get the following error:
scipy-0.15.1-cp33-none-win_amd64.whl is not supported wheel on this platform
I would like to know what the problem is?
python pip
python pip
edited Mar 2 '17 at 13:49
Ij888
509
509
asked Feb 17 '15 at 18:05
lskrinjarlskrinjar
1,83662039
1,83662039
add a comment |
add a comment |
23 Answers
23
active
oldest
votes
cp33
means CPython 3.3
you need scipy‑0.15.1‑cp27‑none‑win_amd64.whl
instead.
6
I had this issue too (with numpy though) so I downloaded all of thecp27
here and tried each one until one worked perfectly (in my casenumpy-1.9.3+vanilla-cp27-none-win32
)
– CodyBugstein
Oct 15 '15 at 3:40
1
had same issue for opencv, I have python 3.5. So download cp35 and pip install filename.whl
– Somnath Kadam
Dec 8 '16 at 18:37
15
start Python and run:import platform
and thenplatform.architecture()
to see which version of Python you're running so you know which .whl to download!
– gregorio099
Feb 7 '17 at 20:57
4
Thanks @gregorio099. I'm running a 64-bit version of Windows, but apparently a 32-bit version of Python. Your comment saved me some time.
– tww0003
May 4 '17 at 17:31
(thank you)^100
– user2415010
Jun 1 '17 at 19:34
|
show 2 more comments
This can also be caused by using an out-of-date pip
with a recent wheel file.
I was very confused, because I was installing numpy-1.10.4+mkl-cp27-cp27m-win_amd64.whl
(from here), and it is definitely the correct version for my Python installation (Windows 64-bit Python 2.7.11). I got the "not supported wheel on this platform" error.
Upgrading pip with python -m pip install --upgrade pip
solved it.
17
This was super-helpful for me. Thanks!
– dthor
Mar 21 '16 at 19:12
2
Thank you! I was getting this message after installing Python 3.4 from the MSI installer. Turned out the installer included PIP 1.5.6, which was generating the "not supported" message. After upgrading, I ended up with PIP 8.1.1, which solved the problem.
– cbranch
Apr 5 '16 at 17:31
1
Yeah, the default with a fresh Python installation seems to usually be old. Same with a new virtualenv, which installs its own pip.
– aldel
Apr 7 '16 at 19:52
I got this error when I tried installing a version of pillow. Very helpful. Thank you!
– Dhiraj Shekar
Apr 28 '16 at 7:28
1
Upgrading to pip 9.0.1 from a previous version(8.1.1 for Py3 and 7.0.1 for Py2) solved the issue for me
– raghav710
Dec 20 '16 at 7:00
|
show 7 more comments
I had the same problem while installing scipy-0.17.0-cp35-none-win_amd64.whl and my Python version is 3.5. It returned the same error message:
scipy-0.17.0-cp35-none-win_amd64.whl is not supported wheel on this platform.
I realized that amd64 is not about my Windows, but about the Python version. Actually I am using a 32 bit Python on a 64 bit Windows. Installing the following file solved the issue:
scipy-0.17.0-cp35-none-win32.whl
3
Thank you, this fixed my error
– imnotfred
Jul 8 '16 at 19:11
1
Thanks a ton....that helped!
– SubhasisM
Sep 1 '16 at 19:50
1
I think I am having the same issue. how did you check that your python was 32bit?
– user1757654
Feb 20 '17 at 19:23
1
@user1757654, please check: stackoverflow.com/questions/1405913/…
– 1man
Feb 20 '17 at 20:30
1
This worked for me, thanks!
– Josh Friedlander
Dec 7 '17 at 13:51
|
show 1 more comment
I come across this problem because the wrong name of my package (scipy-0.17.0-cp27-none-win_amd64 (1)
), after I delete the '(1)' and change the package to scipy-0.17.0-cp27-none-win_amd64
, the problem got resolved.
4
Thanks so much! I couldn't believe my eyes that pip judges which platform the wheel pertains to by name!
– Antony Hatchkins
Nov 13 '16 at 19:45
1
You saved my day, I can't believe pip depends on name of file
– Pham Thanh
Dec 24 '16 at 12:52
Useful response. It works for me!
– Emad Aghayi
Oct 9 '17 at 23:15
I had this issue as well, with a numpy wheel - I had replaced a + with a - when I uploaded it to our nexus repository. Changing the name back before pip install fixed it - Thanks!
– imdibiji
Nov 17 '17 at 20:37
add a comment |
If you are totally new to python read step by step or go directly to 5th step directly.
Follow the below method to install scipy 0.18.1 on Windows 64-bit , Python 64-bit .
Be careful with the versions of
1. Python
2. Windows
3. .whl version of numpy and scipy files
4. First install numpy and then scipy.
pip install FileName.whl
- ForNumpy:http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
ForScipy:http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
Be aware of the file name ( what I mean is check the cp no).
Ex :scipy-0.18.1-cp35-cp35m-win_amd64.whl
To check which cp is supported by your pip , go to point No 2 below.
If you are using .whl file . Following errors are likely to occur .
- You are using pip version 7.1.0, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command
- scipy-0.15.1-cp33-none-win_amd64.whl.whl is not supported wheel on this platform
For the above error : start Python(in my case 3.5), type :
import pip
print(pip.pep425tags.get_supported())
output :
[('cp35', 'cp35m', 'win_amd64'), ('cp35', 'none', 'win_amd64'), ('py3', 'none', 'win_amd64'), ('cp35', 'none', 'any'), ('cp3', 'none', 'any'), ('py35', 'none', 'any'), ('py3', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
In the output you will observe cp35 is there , so download cp35 for numpy as well as scipy.
Further edits are most welcome !!!!
Apparently, on some platforms, you needimport pip._internal
followed byprint(pip._internal.pep425tags.get_supported())
– Marc Van Daele
Sep 3 '18 at 7:14
add a comment |
Change the filename to scipy-0.15.1-cp33-none-any.whl
and then run this command:
pip install scipy-0.15.1-cp33-none-any.whl
It should work :-)
2
Just a workaround, or do you have any supporting reason?
– Ravinder Payal
Mar 8 '17 at 7:42
Ravi vs Ravi ...
– Rohit Kumar
Mar 11 at 15:48
add a comment |
Please do notice that all platform requirements are taken from the name of the *.whl file!
So be very careful with renaming of *.whl package. I occasionally renamed my newly compiled tensorflow package from
tensorflow-1.11.0-cp36-cp36m-linux_x86_64.whl
to
tensorflow-1.11.0-cp36-cp36m-linux_x86_64_gpu.whl
just to remind myself about gpu support and struggled with
tensorflow-1.11.0-cp36-cp36m-linux_x86_64_gpu.whl is not a supported
wheel on this platform.
error for about half an hour.
add a comment |
I tried to install scikit-image but got the following error when I tried to install the .whl file even though my installed version of python was 2.7 32-bit. scikit_image-0.12.3-cp27-cp27m-win32.whl is not a supported wheel on this platform.
However I also got this message before the error message:
You are using pip version 7.1.0, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
I then ran the command python -m pip install --upgrade pip
and then pip install scikit_image-0.12.3-cp27-cp27m-win32.whl
worked fine. I hope this can help someone!
add a comment |
First of all, cp33 means that it is to be used when you have Python 3.3 running on your system. So if you have Python 2.7 on your system, try installing the cp27 version.
Installing scipy-0.18.1-cp27-cp27m-win_amd64.whl, needs a Python 2.7 running and a 64-bit system.
If you are still getting an error saying "scipy-0.18.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform", then go for the win32 version.
By this I mean install scipy-0.18.1-cp27-cp27m-win32.whl instead of the first one.
This is because you might be running a 32-bit python on a 64-bit system.
The last step successfully installed scipy for me.
add a comment |
Things to check:
- You are downloading proper version like cp27 (means for python 2.7) cp36(means for python 3.6).
Check of which architecture (32 bit or 64 bit) your python is? (you can do it so by opening python idle and typing)
import platform
platform.architecture()
Now download the file of that bit irrespective of your system architecture.
Check whether you're using the correct filename (i.e it should not be appended with (1) which might happen if you download the file twice)
Check if your pip is updated or not. If not you can use
python -m pip install -upgrade pip
add a comment |
I'm deploying Flask using Python34 on IIS.
The following steps worked for me
- Upgrade pip
- Install the wheel file for numpy
- pip install pandas
add a comment |
I had similar problem, installing a 64-bit version for python27 on windows 7 64bit. Everything was up-to-date, yet I got the message
scipy-0.18.1-cp27-cp27m-win_amd64.whl is not supported wheel on this platform
Than I donwloaded a 32-bit whl and it worked.
pip install scipy-0.18.1-cp27-cp27m-win32.whl
I suspect that the problem was probably that I dont have an AMD processor, rather and intel one, and the scipy 64bit version says amd64 in the end.
add a comment |
try conda for installation,
seems to resolve versions
on the fly:conda install scikit-learn
2
The OP is trying to install SciPy, not scikit-learn.
– tuomastik
May 28 '17 at 9:35
add a comment |
Simply if you have more than one python on your system for example 2.7/3.4/3.5, it's necessary you check your installation path. :)
add a comment |
I am using Python2.7 and Windows 64-bit system. I was getting the same error for lxml-3.8.0-cp27-cp27m-win_amd64.whl
while doing pip install lxml-3.8.0-cp27-cp27m-win_amd64.whl
Run pip install lxml
and it auto-detected and successfully installed the win32 version (though my system is Windows-64bit)
C:Python27>pip install lxml
Collecting lxml
Downloading lxml-3.8.0-cp27-cp27m-win32.whl (2.9MB)
100% |################################| 2.9MB 20kB/s
Installing collected packages: lxml
Successfully installed lxml-3.8.0
So, I will go with @1man's answer.
add a comment |
During Tensorflow configuration I specified python3.6. But default python on my system is python2.7. Thus pip in my case means pip for 2.7. For me
pip3 install /tmp/tensorflow_pkg/NAME.whl
did the trick.
add a comment |
In my case [Win64, Python 2.7, cygwin] the issue was with a missing gcc
.
Using apt-cyg install gcc-core
enabled me to then use pip2 wheel ...
to install my wheels automatically.
add a comment |
It's better to check the version of python where you want to install your package.
If the wheel was built for python3 and your python version is python2.x you may get this error.
While installing using pip follow this convention
python2 -m pip install XXXXXX.whl #if .whl is for python2
python3 -m pip install XXXXXX.whl #if .whl is for python3
I run the code '!python -m pip install Twisted-17.9.0-cp36-cp36m-win_amd64.whl' but I get this error: 'Requirement 'Twisted-17.9.0-cp36-cp36m-win_amd64.whl' looks like a filename, but the file does not exist Twisted-17.9.0-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.'
– user2356563
Feb 13 at 4:10
add a comment |
In my case it had to do with not having installed previously the GDAL core. For a guide on how to install the GDAL and Basemap libraries go to:
https://github.com/felipunky/GISPython/blob/master/README.md
add a comment |
For me, it worked when I selected the correct bit of my Python version, NOT the one of my computer version.
Mine is 32bit, and my computer is 64bit. That was the problem and the 32bit version of fixed it.
To be exact, here is the one that I downloaded and worked for me:
mysqlclient-1.3.13-cp37-cp37m-win32.whl
Once again, just make sure to chose your python version of bits and not your system one.
add a comment |
I tried a bunch of the stuff above to no avail.
Previously, I upgraded to pip 18.1.
Kept getting the following error when trying (for pyFltk):
from fltk import *
ImportError: DLL load failed %1 is not a valid Win32 Application
I was getting all sorts of errors about the *.whl file not being supported by my machine or something about being unable to remove the correct files from distutils.
Went back to my notes and they indicated that the whl file:
pyFltk-1.3.3.1-cp36-cp36m-win_amd64.whl but I kept getting the error above sooo...
it required pip 9.0.3 to install.
I downgraded my version of pip to 9.0.3
pip install pip=9.0.3
and the .whl file installed properly.
This is also related to: here
add a comment |
I was trying to verify the installation of TensorFlow as specified here on a newly created virtual environment on Python 3.6. On running:
pip3 install --ignore-installed --upgrade "/Users/Salman/Downloads/tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl"
I get the error and/or warning:
tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl is not a supported wheel on this platform.
Since I had previously upgraded from pip to pip3, I simply replaced pip with pip3 as in:
pip3 install --ignore-installed --upgrade "/Users/Salman/Downloads/tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl"
and it worked like a charm!
add a comment |
I had the same problem
I downloaded latest pip from https://pypi.org/project/pip/#files
and then....
pip install << downloaded file location >>
then pygame and kivy installation worked...
Thanks...!!
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f28568070%2ffilename-whl-is-not-supported-wheel-on-this-platform%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
23 Answers
23
active
oldest
votes
23 Answers
23
active
oldest
votes
active
oldest
votes
active
oldest
votes
cp33
means CPython 3.3
you need scipy‑0.15.1‑cp27‑none‑win_amd64.whl
instead.
6
I had this issue too (with numpy though) so I downloaded all of thecp27
here and tried each one until one worked perfectly (in my casenumpy-1.9.3+vanilla-cp27-none-win32
)
– CodyBugstein
Oct 15 '15 at 3:40
1
had same issue for opencv, I have python 3.5. So download cp35 and pip install filename.whl
– Somnath Kadam
Dec 8 '16 at 18:37
15
start Python and run:import platform
and thenplatform.architecture()
to see which version of Python you're running so you know which .whl to download!
– gregorio099
Feb 7 '17 at 20:57
4
Thanks @gregorio099. I'm running a 64-bit version of Windows, but apparently a 32-bit version of Python. Your comment saved me some time.
– tww0003
May 4 '17 at 17:31
(thank you)^100
– user2415010
Jun 1 '17 at 19:34
|
show 2 more comments
cp33
means CPython 3.3
you need scipy‑0.15.1‑cp27‑none‑win_amd64.whl
instead.
6
I had this issue too (with numpy though) so I downloaded all of thecp27
here and tried each one until one worked perfectly (in my casenumpy-1.9.3+vanilla-cp27-none-win32
)
– CodyBugstein
Oct 15 '15 at 3:40
1
had same issue for opencv, I have python 3.5. So download cp35 and pip install filename.whl
– Somnath Kadam
Dec 8 '16 at 18:37
15
start Python and run:import platform
and thenplatform.architecture()
to see which version of Python you're running so you know which .whl to download!
– gregorio099
Feb 7 '17 at 20:57
4
Thanks @gregorio099. I'm running a 64-bit version of Windows, but apparently a 32-bit version of Python. Your comment saved me some time.
– tww0003
May 4 '17 at 17:31
(thank you)^100
– user2415010
Jun 1 '17 at 19:34
|
show 2 more comments
cp33
means CPython 3.3
you need scipy‑0.15.1‑cp27‑none‑win_amd64.whl
instead.
cp33
means CPython 3.3
you need scipy‑0.15.1‑cp27‑none‑win_amd64.whl
instead.
answered Feb 17 '15 at 18:07
ismailismail
34.8k87086
34.8k87086
6
I had this issue too (with numpy though) so I downloaded all of thecp27
here and tried each one until one worked perfectly (in my casenumpy-1.9.3+vanilla-cp27-none-win32
)
– CodyBugstein
Oct 15 '15 at 3:40
1
had same issue for opencv, I have python 3.5. So download cp35 and pip install filename.whl
– Somnath Kadam
Dec 8 '16 at 18:37
15
start Python and run:import platform
and thenplatform.architecture()
to see which version of Python you're running so you know which .whl to download!
– gregorio099
Feb 7 '17 at 20:57
4
Thanks @gregorio099. I'm running a 64-bit version of Windows, but apparently a 32-bit version of Python. Your comment saved me some time.
– tww0003
May 4 '17 at 17:31
(thank you)^100
– user2415010
Jun 1 '17 at 19:34
|
show 2 more comments
6
I had this issue too (with numpy though) so I downloaded all of thecp27
here and tried each one until one worked perfectly (in my casenumpy-1.9.3+vanilla-cp27-none-win32
)
– CodyBugstein
Oct 15 '15 at 3:40
1
had same issue for opencv, I have python 3.5. So download cp35 and pip install filename.whl
– Somnath Kadam
Dec 8 '16 at 18:37
15
start Python and run:import platform
and thenplatform.architecture()
to see which version of Python you're running so you know which .whl to download!
– gregorio099
Feb 7 '17 at 20:57
4
Thanks @gregorio099. I'm running a 64-bit version of Windows, but apparently a 32-bit version of Python. Your comment saved me some time.
– tww0003
May 4 '17 at 17:31
(thank you)^100
– user2415010
Jun 1 '17 at 19:34
6
6
I had this issue too (with numpy though) so I downloaded all of the
cp27
here and tried each one until one worked perfectly (in my case numpy-1.9.3+vanilla-cp27-none-win32
)– CodyBugstein
Oct 15 '15 at 3:40
I had this issue too (with numpy though) so I downloaded all of the
cp27
here and tried each one until one worked perfectly (in my case numpy-1.9.3+vanilla-cp27-none-win32
)– CodyBugstein
Oct 15 '15 at 3:40
1
1
had same issue for opencv, I have python 3.5. So download cp35 and pip install filename.whl
– Somnath Kadam
Dec 8 '16 at 18:37
had same issue for opencv, I have python 3.5. So download cp35 and pip install filename.whl
– Somnath Kadam
Dec 8 '16 at 18:37
15
15
start Python and run:
import platform
and then platform.architecture()
to see which version of Python you're running so you know which .whl to download!– gregorio099
Feb 7 '17 at 20:57
start Python and run:
import platform
and then platform.architecture()
to see which version of Python you're running so you know which .whl to download!– gregorio099
Feb 7 '17 at 20:57
4
4
Thanks @gregorio099. I'm running a 64-bit version of Windows, but apparently a 32-bit version of Python. Your comment saved me some time.
– tww0003
May 4 '17 at 17:31
Thanks @gregorio099. I'm running a 64-bit version of Windows, but apparently a 32-bit version of Python. Your comment saved me some time.
– tww0003
May 4 '17 at 17:31
(thank you)^100
– user2415010
Jun 1 '17 at 19:34
(thank you)^100
– user2415010
Jun 1 '17 at 19:34
|
show 2 more comments
This can also be caused by using an out-of-date pip
with a recent wheel file.
I was very confused, because I was installing numpy-1.10.4+mkl-cp27-cp27m-win_amd64.whl
(from here), and it is definitely the correct version for my Python installation (Windows 64-bit Python 2.7.11). I got the "not supported wheel on this platform" error.
Upgrading pip with python -m pip install --upgrade pip
solved it.
17
This was super-helpful for me. Thanks!
– dthor
Mar 21 '16 at 19:12
2
Thank you! I was getting this message after installing Python 3.4 from the MSI installer. Turned out the installer included PIP 1.5.6, which was generating the "not supported" message. After upgrading, I ended up with PIP 8.1.1, which solved the problem.
– cbranch
Apr 5 '16 at 17:31
1
Yeah, the default with a fresh Python installation seems to usually be old. Same with a new virtualenv, which installs its own pip.
– aldel
Apr 7 '16 at 19:52
I got this error when I tried installing a version of pillow. Very helpful. Thank you!
– Dhiraj Shekar
Apr 28 '16 at 7:28
1
Upgrading to pip 9.0.1 from a previous version(8.1.1 for Py3 and 7.0.1 for Py2) solved the issue for me
– raghav710
Dec 20 '16 at 7:00
|
show 7 more comments
This can also be caused by using an out-of-date pip
with a recent wheel file.
I was very confused, because I was installing numpy-1.10.4+mkl-cp27-cp27m-win_amd64.whl
(from here), and it is definitely the correct version for my Python installation (Windows 64-bit Python 2.7.11). I got the "not supported wheel on this platform" error.
Upgrading pip with python -m pip install --upgrade pip
solved it.
17
This was super-helpful for me. Thanks!
– dthor
Mar 21 '16 at 19:12
2
Thank you! I was getting this message after installing Python 3.4 from the MSI installer. Turned out the installer included PIP 1.5.6, which was generating the "not supported" message. After upgrading, I ended up with PIP 8.1.1, which solved the problem.
– cbranch
Apr 5 '16 at 17:31
1
Yeah, the default with a fresh Python installation seems to usually be old. Same with a new virtualenv, which installs its own pip.
– aldel
Apr 7 '16 at 19:52
I got this error when I tried installing a version of pillow. Very helpful. Thank you!
– Dhiraj Shekar
Apr 28 '16 at 7:28
1
Upgrading to pip 9.0.1 from a previous version(8.1.1 for Py3 and 7.0.1 for Py2) solved the issue for me
– raghav710
Dec 20 '16 at 7:00
|
show 7 more comments
This can also be caused by using an out-of-date pip
with a recent wheel file.
I was very confused, because I was installing numpy-1.10.4+mkl-cp27-cp27m-win_amd64.whl
(from here), and it is definitely the correct version for my Python installation (Windows 64-bit Python 2.7.11). I got the "not supported wheel on this platform" error.
Upgrading pip with python -m pip install --upgrade pip
solved it.
This can also be caused by using an out-of-date pip
with a recent wheel file.
I was very confused, because I was installing numpy-1.10.4+mkl-cp27-cp27m-win_amd64.whl
(from here), and it is definitely the correct version for my Python installation (Windows 64-bit Python 2.7.11). I got the "not supported wheel on this platform" error.
Upgrading pip with python -m pip install --upgrade pip
solved it.
edited Mar 24 '16 at 20:48
answered Mar 16 '16 at 20:36


aldelaldel
3,36711626
3,36711626
17
This was super-helpful for me. Thanks!
– dthor
Mar 21 '16 at 19:12
2
Thank you! I was getting this message after installing Python 3.4 from the MSI installer. Turned out the installer included PIP 1.5.6, which was generating the "not supported" message. After upgrading, I ended up with PIP 8.1.1, which solved the problem.
– cbranch
Apr 5 '16 at 17:31
1
Yeah, the default with a fresh Python installation seems to usually be old. Same with a new virtualenv, which installs its own pip.
– aldel
Apr 7 '16 at 19:52
I got this error when I tried installing a version of pillow. Very helpful. Thank you!
– Dhiraj Shekar
Apr 28 '16 at 7:28
1
Upgrading to pip 9.0.1 from a previous version(8.1.1 for Py3 and 7.0.1 for Py2) solved the issue for me
– raghav710
Dec 20 '16 at 7:00
|
show 7 more comments
17
This was super-helpful for me. Thanks!
– dthor
Mar 21 '16 at 19:12
2
Thank you! I was getting this message after installing Python 3.4 from the MSI installer. Turned out the installer included PIP 1.5.6, which was generating the "not supported" message. After upgrading, I ended up with PIP 8.1.1, which solved the problem.
– cbranch
Apr 5 '16 at 17:31
1
Yeah, the default with a fresh Python installation seems to usually be old. Same with a new virtualenv, which installs its own pip.
– aldel
Apr 7 '16 at 19:52
I got this error when I tried installing a version of pillow. Very helpful. Thank you!
– Dhiraj Shekar
Apr 28 '16 at 7:28
1
Upgrading to pip 9.0.1 from a previous version(8.1.1 for Py3 and 7.0.1 for Py2) solved the issue for me
– raghav710
Dec 20 '16 at 7:00
17
17
This was super-helpful for me. Thanks!
– dthor
Mar 21 '16 at 19:12
This was super-helpful for me. Thanks!
– dthor
Mar 21 '16 at 19:12
2
2
Thank you! I was getting this message after installing Python 3.4 from the MSI installer. Turned out the installer included PIP 1.5.6, which was generating the "not supported" message. After upgrading, I ended up with PIP 8.1.1, which solved the problem.
– cbranch
Apr 5 '16 at 17:31
Thank you! I was getting this message after installing Python 3.4 from the MSI installer. Turned out the installer included PIP 1.5.6, which was generating the "not supported" message. After upgrading, I ended up with PIP 8.1.1, which solved the problem.
– cbranch
Apr 5 '16 at 17:31
1
1
Yeah, the default with a fresh Python installation seems to usually be old. Same with a new virtualenv, which installs its own pip.
– aldel
Apr 7 '16 at 19:52
Yeah, the default with a fresh Python installation seems to usually be old. Same with a new virtualenv, which installs its own pip.
– aldel
Apr 7 '16 at 19:52
I got this error when I tried installing a version of pillow. Very helpful. Thank you!
– Dhiraj Shekar
Apr 28 '16 at 7:28
I got this error when I tried installing a version of pillow. Very helpful. Thank you!
– Dhiraj Shekar
Apr 28 '16 at 7:28
1
1
Upgrading to pip 9.0.1 from a previous version(8.1.1 for Py3 and 7.0.1 for Py2) solved the issue for me
– raghav710
Dec 20 '16 at 7:00
Upgrading to pip 9.0.1 from a previous version(8.1.1 for Py3 and 7.0.1 for Py2) solved the issue for me
– raghav710
Dec 20 '16 at 7:00
|
show 7 more comments
I had the same problem while installing scipy-0.17.0-cp35-none-win_amd64.whl and my Python version is 3.5. It returned the same error message:
scipy-0.17.0-cp35-none-win_amd64.whl is not supported wheel on this platform.
I realized that amd64 is not about my Windows, but about the Python version. Actually I am using a 32 bit Python on a 64 bit Windows. Installing the following file solved the issue:
scipy-0.17.0-cp35-none-win32.whl
3
Thank you, this fixed my error
– imnotfred
Jul 8 '16 at 19:11
1
Thanks a ton....that helped!
– SubhasisM
Sep 1 '16 at 19:50
1
I think I am having the same issue. how did you check that your python was 32bit?
– user1757654
Feb 20 '17 at 19:23
1
@user1757654, please check: stackoverflow.com/questions/1405913/…
– 1man
Feb 20 '17 at 20:30
1
This worked for me, thanks!
– Josh Friedlander
Dec 7 '17 at 13:51
|
show 1 more comment
I had the same problem while installing scipy-0.17.0-cp35-none-win_amd64.whl and my Python version is 3.5. It returned the same error message:
scipy-0.17.0-cp35-none-win_amd64.whl is not supported wheel on this platform.
I realized that amd64 is not about my Windows, but about the Python version. Actually I am using a 32 bit Python on a 64 bit Windows. Installing the following file solved the issue:
scipy-0.17.0-cp35-none-win32.whl
3
Thank you, this fixed my error
– imnotfred
Jul 8 '16 at 19:11
1
Thanks a ton....that helped!
– SubhasisM
Sep 1 '16 at 19:50
1
I think I am having the same issue. how did you check that your python was 32bit?
– user1757654
Feb 20 '17 at 19:23
1
@user1757654, please check: stackoverflow.com/questions/1405913/…
– 1man
Feb 20 '17 at 20:30
1
This worked for me, thanks!
– Josh Friedlander
Dec 7 '17 at 13:51
|
show 1 more comment
I had the same problem while installing scipy-0.17.0-cp35-none-win_amd64.whl and my Python version is 3.5. It returned the same error message:
scipy-0.17.0-cp35-none-win_amd64.whl is not supported wheel on this platform.
I realized that amd64 is not about my Windows, but about the Python version. Actually I am using a 32 bit Python on a 64 bit Windows. Installing the following file solved the issue:
scipy-0.17.0-cp35-none-win32.whl
I had the same problem while installing scipy-0.17.0-cp35-none-win_amd64.whl and my Python version is 3.5. It returned the same error message:
scipy-0.17.0-cp35-none-win_amd64.whl is not supported wheel on this platform.
I realized that amd64 is not about my Windows, but about the Python version. Actually I am using a 32 bit Python on a 64 bit Windows. Installing the following file solved the issue:
scipy-0.17.0-cp35-none-win32.whl
answered Mar 22 '16 at 15:10


1man1man
1,79831833
1,79831833
3
Thank you, this fixed my error
– imnotfred
Jul 8 '16 at 19:11
1
Thanks a ton....that helped!
– SubhasisM
Sep 1 '16 at 19:50
1
I think I am having the same issue. how did you check that your python was 32bit?
– user1757654
Feb 20 '17 at 19:23
1
@user1757654, please check: stackoverflow.com/questions/1405913/…
– 1man
Feb 20 '17 at 20:30
1
This worked for me, thanks!
– Josh Friedlander
Dec 7 '17 at 13:51
|
show 1 more comment
3
Thank you, this fixed my error
– imnotfred
Jul 8 '16 at 19:11
1
Thanks a ton....that helped!
– SubhasisM
Sep 1 '16 at 19:50
1
I think I am having the same issue. how did you check that your python was 32bit?
– user1757654
Feb 20 '17 at 19:23
1
@user1757654, please check: stackoverflow.com/questions/1405913/…
– 1man
Feb 20 '17 at 20:30
1
This worked for me, thanks!
– Josh Friedlander
Dec 7 '17 at 13:51
3
3
Thank you, this fixed my error
– imnotfred
Jul 8 '16 at 19:11
Thank you, this fixed my error
– imnotfred
Jul 8 '16 at 19:11
1
1
Thanks a ton....that helped!
– SubhasisM
Sep 1 '16 at 19:50
Thanks a ton....that helped!
– SubhasisM
Sep 1 '16 at 19:50
1
1
I think I am having the same issue. how did you check that your python was 32bit?
– user1757654
Feb 20 '17 at 19:23
I think I am having the same issue. how did you check that your python was 32bit?
– user1757654
Feb 20 '17 at 19:23
1
1
@user1757654, please check: stackoverflow.com/questions/1405913/…
– 1man
Feb 20 '17 at 20:30
@user1757654, please check: stackoverflow.com/questions/1405913/…
– 1man
Feb 20 '17 at 20:30
1
1
This worked for me, thanks!
– Josh Friedlander
Dec 7 '17 at 13:51
This worked for me, thanks!
– Josh Friedlander
Dec 7 '17 at 13:51
|
show 1 more comment
I come across this problem because the wrong name of my package (scipy-0.17.0-cp27-none-win_amd64 (1)
), after I delete the '(1)' and change the package to scipy-0.17.0-cp27-none-win_amd64
, the problem got resolved.
4
Thanks so much! I couldn't believe my eyes that pip judges which platform the wheel pertains to by name!
– Antony Hatchkins
Nov 13 '16 at 19:45
1
You saved my day, I can't believe pip depends on name of file
– Pham Thanh
Dec 24 '16 at 12:52
Useful response. It works for me!
– Emad Aghayi
Oct 9 '17 at 23:15
I had this issue as well, with a numpy wheel - I had replaced a + with a - when I uploaded it to our nexus repository. Changing the name back before pip install fixed it - Thanks!
– imdibiji
Nov 17 '17 at 20:37
add a comment |
I come across this problem because the wrong name of my package (scipy-0.17.0-cp27-none-win_amd64 (1)
), after I delete the '(1)' and change the package to scipy-0.17.0-cp27-none-win_amd64
, the problem got resolved.
4
Thanks so much! I couldn't believe my eyes that pip judges which platform the wheel pertains to by name!
– Antony Hatchkins
Nov 13 '16 at 19:45
1
You saved my day, I can't believe pip depends on name of file
– Pham Thanh
Dec 24 '16 at 12:52
Useful response. It works for me!
– Emad Aghayi
Oct 9 '17 at 23:15
I had this issue as well, with a numpy wheel - I had replaced a + with a - when I uploaded it to our nexus repository. Changing the name back before pip install fixed it - Thanks!
– imdibiji
Nov 17 '17 at 20:37
add a comment |
I come across this problem because the wrong name of my package (scipy-0.17.0-cp27-none-win_amd64 (1)
), after I delete the '(1)' and change the package to scipy-0.17.0-cp27-none-win_amd64
, the problem got resolved.
I come across this problem because the wrong name of my package (scipy-0.17.0-cp27-none-win_amd64 (1)
), after I delete the '(1)' and change the package to scipy-0.17.0-cp27-none-win_amd64
, the problem got resolved.
edited Mar 2 '17 at 14:02
cello
3,90531523
3,90531523
answered May 5 '16 at 8:55


刘远圳刘远圳
33624
33624
4
Thanks so much! I couldn't believe my eyes that pip judges which platform the wheel pertains to by name!
– Antony Hatchkins
Nov 13 '16 at 19:45
1
You saved my day, I can't believe pip depends on name of file
– Pham Thanh
Dec 24 '16 at 12:52
Useful response. It works for me!
– Emad Aghayi
Oct 9 '17 at 23:15
I had this issue as well, with a numpy wheel - I had replaced a + with a - when I uploaded it to our nexus repository. Changing the name back before pip install fixed it - Thanks!
– imdibiji
Nov 17 '17 at 20:37
add a comment |
4
Thanks so much! I couldn't believe my eyes that pip judges which platform the wheel pertains to by name!
– Antony Hatchkins
Nov 13 '16 at 19:45
1
You saved my day, I can't believe pip depends on name of file
– Pham Thanh
Dec 24 '16 at 12:52
Useful response. It works for me!
– Emad Aghayi
Oct 9 '17 at 23:15
I had this issue as well, with a numpy wheel - I had replaced a + with a - when I uploaded it to our nexus repository. Changing the name back before pip install fixed it - Thanks!
– imdibiji
Nov 17 '17 at 20:37
4
4
Thanks so much! I couldn't believe my eyes that pip judges which platform the wheel pertains to by name!
– Antony Hatchkins
Nov 13 '16 at 19:45
Thanks so much! I couldn't believe my eyes that pip judges which platform the wheel pertains to by name!
– Antony Hatchkins
Nov 13 '16 at 19:45
1
1
You saved my day, I can't believe pip depends on name of file
– Pham Thanh
Dec 24 '16 at 12:52
You saved my day, I can't believe pip depends on name of file
– Pham Thanh
Dec 24 '16 at 12:52
Useful response. It works for me!
– Emad Aghayi
Oct 9 '17 at 23:15
Useful response. It works for me!
– Emad Aghayi
Oct 9 '17 at 23:15
I had this issue as well, with a numpy wheel - I had replaced a + with a - when I uploaded it to our nexus repository. Changing the name back before pip install fixed it - Thanks!
– imdibiji
Nov 17 '17 at 20:37
I had this issue as well, with a numpy wheel - I had replaced a + with a - when I uploaded it to our nexus repository. Changing the name back before pip install fixed it - Thanks!
– imdibiji
Nov 17 '17 at 20:37
add a comment |
If you are totally new to python read step by step or go directly to 5th step directly.
Follow the below method to install scipy 0.18.1 on Windows 64-bit , Python 64-bit .
Be careful with the versions of
1. Python
2. Windows
3. .whl version of numpy and scipy files
4. First install numpy and then scipy.
pip install FileName.whl
- ForNumpy:http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
ForScipy:http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
Be aware of the file name ( what I mean is check the cp no).
Ex :scipy-0.18.1-cp35-cp35m-win_amd64.whl
To check which cp is supported by your pip , go to point No 2 below.
If you are using .whl file . Following errors are likely to occur .
- You are using pip version 7.1.0, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command
- scipy-0.15.1-cp33-none-win_amd64.whl.whl is not supported wheel on this platform
For the above error : start Python(in my case 3.5), type :
import pip
print(pip.pep425tags.get_supported())
output :
[('cp35', 'cp35m', 'win_amd64'), ('cp35', 'none', 'win_amd64'), ('py3', 'none', 'win_amd64'), ('cp35', 'none', 'any'), ('cp3', 'none', 'any'), ('py35', 'none', 'any'), ('py3', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
In the output you will observe cp35 is there , so download cp35 for numpy as well as scipy.
Further edits are most welcome !!!!
Apparently, on some platforms, you needimport pip._internal
followed byprint(pip._internal.pep425tags.get_supported())
– Marc Van Daele
Sep 3 '18 at 7:14
add a comment |
If you are totally new to python read step by step or go directly to 5th step directly.
Follow the below method to install scipy 0.18.1 on Windows 64-bit , Python 64-bit .
Be careful with the versions of
1. Python
2. Windows
3. .whl version of numpy and scipy files
4. First install numpy and then scipy.
pip install FileName.whl
- ForNumpy:http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
ForScipy:http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
Be aware of the file name ( what I mean is check the cp no).
Ex :scipy-0.18.1-cp35-cp35m-win_amd64.whl
To check which cp is supported by your pip , go to point No 2 below.
If you are using .whl file . Following errors are likely to occur .
- You are using pip version 7.1.0, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command
- scipy-0.15.1-cp33-none-win_amd64.whl.whl is not supported wheel on this platform
For the above error : start Python(in my case 3.5), type :
import pip
print(pip.pep425tags.get_supported())
output :
[('cp35', 'cp35m', 'win_amd64'), ('cp35', 'none', 'win_amd64'), ('py3', 'none', 'win_amd64'), ('cp35', 'none', 'any'), ('cp3', 'none', 'any'), ('py35', 'none', 'any'), ('py3', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
In the output you will observe cp35 is there , so download cp35 for numpy as well as scipy.
Further edits are most welcome !!!!
Apparently, on some platforms, you needimport pip._internal
followed byprint(pip._internal.pep425tags.get_supported())
– Marc Van Daele
Sep 3 '18 at 7:14
add a comment |
If you are totally new to python read step by step or go directly to 5th step directly.
Follow the below method to install scipy 0.18.1 on Windows 64-bit , Python 64-bit .
Be careful with the versions of
1. Python
2. Windows
3. .whl version of numpy and scipy files
4. First install numpy and then scipy.
pip install FileName.whl
- ForNumpy:http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
ForScipy:http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
Be aware of the file name ( what I mean is check the cp no).
Ex :scipy-0.18.1-cp35-cp35m-win_amd64.whl
To check which cp is supported by your pip , go to point No 2 below.
If you are using .whl file . Following errors are likely to occur .
- You are using pip version 7.1.0, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command
- scipy-0.15.1-cp33-none-win_amd64.whl.whl is not supported wheel on this platform
For the above error : start Python(in my case 3.5), type :
import pip
print(pip.pep425tags.get_supported())
output :
[('cp35', 'cp35m', 'win_amd64'), ('cp35', 'none', 'win_amd64'), ('py3', 'none', 'win_amd64'), ('cp35', 'none', 'any'), ('cp3', 'none', 'any'), ('py35', 'none', 'any'), ('py3', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
In the output you will observe cp35 is there , so download cp35 for numpy as well as scipy.
Further edits are most welcome !!!!
If you are totally new to python read step by step or go directly to 5th step directly.
Follow the below method to install scipy 0.18.1 on Windows 64-bit , Python 64-bit .
Be careful with the versions of
1. Python
2. Windows
3. .whl version of numpy and scipy files
4. First install numpy and then scipy.
pip install FileName.whl
- ForNumpy:http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
ForScipy:http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
Be aware of the file name ( what I mean is check the cp no).
Ex :scipy-0.18.1-cp35-cp35m-win_amd64.whl
To check which cp is supported by your pip , go to point No 2 below.
If you are using .whl file . Following errors are likely to occur .
- You are using pip version 7.1.0, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command
- scipy-0.15.1-cp33-none-win_amd64.whl.whl is not supported wheel on this platform
For the above error : start Python(in my case 3.5), type :
import pip
print(pip.pep425tags.get_supported())
output :
[('cp35', 'cp35m', 'win_amd64'), ('cp35', 'none', 'win_amd64'), ('py3', 'none', 'win_amd64'), ('cp35', 'none', 'any'), ('cp3', 'none', 'any'), ('py35', 'none', 'any'), ('py3', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
In the output you will observe cp35 is there , so download cp35 for numpy as well as scipy.
Further edits are most welcome !!!!
edited Oct 19 '16 at 9:51
Community♦
11
11
answered Oct 9 '16 at 16:34


Arun NaudiyalArun Naudiyal
24643
24643
Apparently, on some platforms, you needimport pip._internal
followed byprint(pip._internal.pep425tags.get_supported())
– Marc Van Daele
Sep 3 '18 at 7:14
add a comment |
Apparently, on some platforms, you needimport pip._internal
followed byprint(pip._internal.pep425tags.get_supported())
– Marc Van Daele
Sep 3 '18 at 7:14
Apparently, on some platforms, you need
import pip._internal
followed by print(pip._internal.pep425tags.get_supported())
– Marc Van Daele
Sep 3 '18 at 7:14
Apparently, on some platforms, you need
import pip._internal
followed by print(pip._internal.pep425tags.get_supported())
– Marc Van Daele
Sep 3 '18 at 7:14
add a comment |
Change the filename to scipy-0.15.1-cp33-none-any.whl
and then run this command:
pip install scipy-0.15.1-cp33-none-any.whl
It should work :-)
2
Just a workaround, or do you have any supporting reason?
– Ravinder Payal
Mar 8 '17 at 7:42
Ravi vs Ravi ...
– Rohit Kumar
Mar 11 at 15:48
add a comment |
Change the filename to scipy-0.15.1-cp33-none-any.whl
and then run this command:
pip install scipy-0.15.1-cp33-none-any.whl
It should work :-)
2
Just a workaround, or do you have any supporting reason?
– Ravinder Payal
Mar 8 '17 at 7:42
Ravi vs Ravi ...
– Rohit Kumar
Mar 11 at 15:48
add a comment |
Change the filename to scipy-0.15.1-cp33-none-any.whl
and then run this command:
pip install scipy-0.15.1-cp33-none-any.whl
It should work :-)
Change the filename to scipy-0.15.1-cp33-none-any.whl
and then run this command:
pip install scipy-0.15.1-cp33-none-any.whl
It should work :-)
edited Jan 18 '17 at 1:43


zx485
15.2k133148
15.2k133148
answered Jan 18 '17 at 1:06
raviravi
6912
6912
2
Just a workaround, or do you have any supporting reason?
– Ravinder Payal
Mar 8 '17 at 7:42
Ravi vs Ravi ...
– Rohit Kumar
Mar 11 at 15:48
add a comment |
2
Just a workaround, or do you have any supporting reason?
– Ravinder Payal
Mar 8 '17 at 7:42
Ravi vs Ravi ...
– Rohit Kumar
Mar 11 at 15:48
2
2
Just a workaround, or do you have any supporting reason?
– Ravinder Payal
Mar 8 '17 at 7:42
Just a workaround, or do you have any supporting reason?
– Ravinder Payal
Mar 8 '17 at 7:42
Ravi vs Ravi ...
– Rohit Kumar
Mar 11 at 15:48
Ravi vs Ravi ...
– Rohit Kumar
Mar 11 at 15:48
add a comment |
Please do notice that all platform requirements are taken from the name of the *.whl file!
So be very careful with renaming of *.whl package. I occasionally renamed my newly compiled tensorflow package from
tensorflow-1.11.0-cp36-cp36m-linux_x86_64.whl
to
tensorflow-1.11.0-cp36-cp36m-linux_x86_64_gpu.whl
just to remind myself about gpu support and struggled with
tensorflow-1.11.0-cp36-cp36m-linux_x86_64_gpu.whl is not a supported
wheel on this platform.
error for about half an hour.
add a comment |
Please do notice that all platform requirements are taken from the name of the *.whl file!
So be very careful with renaming of *.whl package. I occasionally renamed my newly compiled tensorflow package from
tensorflow-1.11.0-cp36-cp36m-linux_x86_64.whl
to
tensorflow-1.11.0-cp36-cp36m-linux_x86_64_gpu.whl
just to remind myself about gpu support and struggled with
tensorflow-1.11.0-cp36-cp36m-linux_x86_64_gpu.whl is not a supported
wheel on this platform.
error for about half an hour.
add a comment |
Please do notice that all platform requirements are taken from the name of the *.whl file!
So be very careful with renaming of *.whl package. I occasionally renamed my newly compiled tensorflow package from
tensorflow-1.11.0-cp36-cp36m-linux_x86_64.whl
to
tensorflow-1.11.0-cp36-cp36m-linux_x86_64_gpu.whl
just to remind myself about gpu support and struggled with
tensorflow-1.11.0-cp36-cp36m-linux_x86_64_gpu.whl is not a supported
wheel on this platform.
error for about half an hour.
Please do notice that all platform requirements are taken from the name of the *.whl file!
So be very careful with renaming of *.whl package. I occasionally renamed my newly compiled tensorflow package from
tensorflow-1.11.0-cp36-cp36m-linux_x86_64.whl
to
tensorflow-1.11.0-cp36-cp36m-linux_x86_64_gpu.whl
just to remind myself about gpu support and struggled with
tensorflow-1.11.0-cp36-cp36m-linux_x86_64_gpu.whl is not a supported
wheel on this platform.
error for about half an hour.
answered Oct 5 '18 at 8:09


Ivan TalalaevIvan Talalaev
1,50222128
1,50222128
add a comment |
add a comment |
I tried to install scikit-image but got the following error when I tried to install the .whl file even though my installed version of python was 2.7 32-bit. scikit_image-0.12.3-cp27-cp27m-win32.whl is not a supported wheel on this platform.
However I also got this message before the error message:
You are using pip version 7.1.0, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
I then ran the command python -m pip install --upgrade pip
and then pip install scikit_image-0.12.3-cp27-cp27m-win32.whl
worked fine. I hope this can help someone!
add a comment |
I tried to install scikit-image but got the following error when I tried to install the .whl file even though my installed version of python was 2.7 32-bit. scikit_image-0.12.3-cp27-cp27m-win32.whl is not a supported wheel on this platform.
However I also got this message before the error message:
You are using pip version 7.1.0, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
I then ran the command python -m pip install --upgrade pip
and then pip install scikit_image-0.12.3-cp27-cp27m-win32.whl
worked fine. I hope this can help someone!
add a comment |
I tried to install scikit-image but got the following error when I tried to install the .whl file even though my installed version of python was 2.7 32-bit. scikit_image-0.12.3-cp27-cp27m-win32.whl is not a supported wheel on this platform.
However I also got this message before the error message:
You are using pip version 7.1.0, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
I then ran the command python -m pip install --upgrade pip
and then pip install scikit_image-0.12.3-cp27-cp27m-win32.whl
worked fine. I hope this can help someone!
I tried to install scikit-image but got the following error when I tried to install the .whl file even though my installed version of python was 2.7 32-bit. scikit_image-0.12.3-cp27-cp27m-win32.whl is not a supported wheel on this platform.
However I also got this message before the error message:
You are using pip version 7.1.0, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
I then ran the command python -m pip install --upgrade pip
and then pip install scikit_image-0.12.3-cp27-cp27m-win32.whl
worked fine. I hope this can help someone!
answered Jul 27 '16 at 21:03
OgglasOgglas
16.1k699135
16.1k699135
add a comment |
add a comment |
First of all, cp33 means that it is to be used when you have Python 3.3 running on your system. So if you have Python 2.7 on your system, try installing the cp27 version.
Installing scipy-0.18.1-cp27-cp27m-win_amd64.whl, needs a Python 2.7 running and a 64-bit system.
If you are still getting an error saying "scipy-0.18.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform", then go for the win32 version.
By this I mean install scipy-0.18.1-cp27-cp27m-win32.whl instead of the first one.
This is because you might be running a 32-bit python on a 64-bit system.
The last step successfully installed scipy for me.
add a comment |
First of all, cp33 means that it is to be used when you have Python 3.3 running on your system. So if you have Python 2.7 on your system, try installing the cp27 version.
Installing scipy-0.18.1-cp27-cp27m-win_amd64.whl, needs a Python 2.7 running and a 64-bit system.
If you are still getting an error saying "scipy-0.18.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform", then go for the win32 version.
By this I mean install scipy-0.18.1-cp27-cp27m-win32.whl instead of the first one.
This is because you might be running a 32-bit python on a 64-bit system.
The last step successfully installed scipy for me.
add a comment |
First of all, cp33 means that it is to be used when you have Python 3.3 running on your system. So if you have Python 2.7 on your system, try installing the cp27 version.
Installing scipy-0.18.1-cp27-cp27m-win_amd64.whl, needs a Python 2.7 running and a 64-bit system.
If you are still getting an error saying "scipy-0.18.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform", then go for the win32 version.
By this I mean install scipy-0.18.1-cp27-cp27m-win32.whl instead of the first one.
This is because you might be running a 32-bit python on a 64-bit system.
The last step successfully installed scipy for me.
First of all, cp33 means that it is to be used when you have Python 3.3 running on your system. So if you have Python 2.7 on your system, try installing the cp27 version.
Installing scipy-0.18.1-cp27-cp27m-win_amd64.whl, needs a Python 2.7 running and a 64-bit system.
If you are still getting an error saying "scipy-0.18.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform", then go for the win32 version.
By this I mean install scipy-0.18.1-cp27-cp27m-win32.whl instead of the first one.
This is because you might be running a 32-bit python on a 64-bit system.
The last step successfully installed scipy for me.
answered Nov 29 '16 at 7:39
u_found_meu_found_me
214
214
add a comment |
add a comment |
Things to check:
- You are downloading proper version like cp27 (means for python 2.7) cp36(means for python 3.6).
Check of which architecture (32 bit or 64 bit) your python is? (you can do it so by opening python idle and typing)
import platform
platform.architecture()
Now download the file of that bit irrespective of your system architecture.
Check whether you're using the correct filename (i.e it should not be appended with (1) which might happen if you download the file twice)
Check if your pip is updated or not. If not you can use
python -m pip install -upgrade pip
add a comment |
Things to check:
- You are downloading proper version like cp27 (means for python 2.7) cp36(means for python 3.6).
Check of which architecture (32 bit or 64 bit) your python is? (you can do it so by opening python idle and typing)
import platform
platform.architecture()
Now download the file of that bit irrespective of your system architecture.
Check whether you're using the correct filename (i.e it should not be appended with (1) which might happen if you download the file twice)
Check if your pip is updated or not. If not you can use
python -m pip install -upgrade pip
add a comment |
Things to check:
- You are downloading proper version like cp27 (means for python 2.7) cp36(means for python 3.6).
Check of which architecture (32 bit or 64 bit) your python is? (you can do it so by opening python idle and typing)
import platform
platform.architecture()
Now download the file of that bit irrespective of your system architecture.
Check whether you're using the correct filename (i.e it should not be appended with (1) which might happen if you download the file twice)
Check if your pip is updated or not. If not you can use
python -m pip install -upgrade pip
Things to check:
- You are downloading proper version like cp27 (means for python 2.7) cp36(means for python 3.6).
Check of which architecture (32 bit or 64 bit) your python is? (you can do it so by opening python idle and typing)
import platform
platform.architecture()
Now download the file of that bit irrespective of your system architecture.
Check whether you're using the correct filename (i.e it should not be appended with (1) which might happen if you download the file twice)
Check if your pip is updated or not. If not you can use
python -m pip install -upgrade pip
edited Jun 24 '17 at 13:00
taras
3,49952333
3,49952333
answered Jun 24 '17 at 12:22
krishnakrishna
1,162719
1,162719
add a comment |
add a comment |
I'm deploying Flask using Python34 on IIS.
The following steps worked for me
- Upgrade pip
- Install the wheel file for numpy
- pip install pandas
add a comment |
I'm deploying Flask using Python34 on IIS.
The following steps worked for me
- Upgrade pip
- Install the wheel file for numpy
- pip install pandas
add a comment |
I'm deploying Flask using Python34 on IIS.
The following steps worked for me
- Upgrade pip
- Install the wheel file for numpy
- pip install pandas
I'm deploying Flask using Python34 on IIS.
The following steps worked for me
- Upgrade pip
- Install the wheel file for numpy
- pip install pandas
answered Mar 9 '18 at 13:41
SteelSteel
211
211
add a comment |
add a comment |
I had similar problem, installing a 64-bit version for python27 on windows 7 64bit. Everything was up-to-date, yet I got the message
scipy-0.18.1-cp27-cp27m-win_amd64.whl is not supported wheel on this platform
Than I donwloaded a 32-bit whl and it worked.
pip install scipy-0.18.1-cp27-cp27m-win32.whl
I suspect that the problem was probably that I dont have an AMD processor, rather and intel one, and the scipy 64bit version says amd64 in the end.
add a comment |
I had similar problem, installing a 64-bit version for python27 on windows 7 64bit. Everything was up-to-date, yet I got the message
scipy-0.18.1-cp27-cp27m-win_amd64.whl is not supported wheel on this platform
Than I donwloaded a 32-bit whl and it worked.
pip install scipy-0.18.1-cp27-cp27m-win32.whl
I suspect that the problem was probably that I dont have an AMD processor, rather and intel one, and the scipy 64bit version says amd64 in the end.
add a comment |
I had similar problem, installing a 64-bit version for python27 on windows 7 64bit. Everything was up-to-date, yet I got the message
scipy-0.18.1-cp27-cp27m-win_amd64.whl is not supported wheel on this platform
Than I donwloaded a 32-bit whl and it worked.
pip install scipy-0.18.1-cp27-cp27m-win32.whl
I suspect that the problem was probably that I dont have an AMD processor, rather and intel one, and the scipy 64bit version says amd64 in the end.
I had similar problem, installing a 64-bit version for python27 on windows 7 64bit. Everything was up-to-date, yet I got the message
scipy-0.18.1-cp27-cp27m-win_amd64.whl is not supported wheel on this platform
Than I donwloaded a 32-bit whl and it worked.
pip install scipy-0.18.1-cp27-cp27m-win32.whl
I suspect that the problem was probably that I dont have an AMD processor, rather and intel one, and the scipy 64bit version says amd64 in the end.
answered Jan 24 '17 at 22:20
Harsh TrivediHarsh Trivedi
111
111
add a comment |
add a comment |
try conda for installation,
seems to resolve versions
on the fly:conda install scikit-learn
2
The OP is trying to install SciPy, not scikit-learn.
– tuomastik
May 28 '17 at 9:35
add a comment |
try conda for installation,
seems to resolve versions
on the fly:conda install scikit-learn
2
The OP is trying to install SciPy, not scikit-learn.
– tuomastik
May 28 '17 at 9:35
add a comment |
try conda for installation,
seems to resolve versions
on the fly:conda install scikit-learn
try conda for installation,
seems to resolve versions
on the fly:conda install scikit-learn
edited Jun 24 '17 at 13:04
taras
3,49952333
3,49952333
answered May 28 '17 at 9:11
tomtom
1
1
2
The OP is trying to install SciPy, not scikit-learn.
– tuomastik
May 28 '17 at 9:35
add a comment |
2
The OP is trying to install SciPy, not scikit-learn.
– tuomastik
May 28 '17 at 9:35
2
2
The OP is trying to install SciPy, not scikit-learn.
– tuomastik
May 28 '17 at 9:35
The OP is trying to install SciPy, not scikit-learn.
– tuomastik
May 28 '17 at 9:35
add a comment |
Simply if you have more than one python on your system for example 2.7/3.4/3.5, it's necessary you check your installation path. :)
add a comment |
Simply if you have more than one python on your system for example 2.7/3.4/3.5, it's necessary you check your installation path. :)
add a comment |
Simply if you have more than one python on your system for example 2.7/3.4/3.5, it's necessary you check your installation path. :)
Simply if you have more than one python on your system for example 2.7/3.4/3.5, it's necessary you check your installation path. :)
answered Jul 30 '17 at 13:19


RaHa VelShodehRaHa VelShodeh
287
287
add a comment |
add a comment |
I am using Python2.7 and Windows 64-bit system. I was getting the same error for lxml-3.8.0-cp27-cp27m-win_amd64.whl
while doing pip install lxml-3.8.0-cp27-cp27m-win_amd64.whl
Run pip install lxml
and it auto-detected and successfully installed the win32 version (though my system is Windows-64bit)
C:Python27>pip install lxml
Collecting lxml
Downloading lxml-3.8.0-cp27-cp27m-win32.whl (2.9MB)
100% |################################| 2.9MB 20kB/s
Installing collected packages: lxml
Successfully installed lxml-3.8.0
So, I will go with @1man's answer.
add a comment |
I am using Python2.7 and Windows 64-bit system. I was getting the same error for lxml-3.8.0-cp27-cp27m-win_amd64.whl
while doing pip install lxml-3.8.0-cp27-cp27m-win_amd64.whl
Run pip install lxml
and it auto-detected and successfully installed the win32 version (though my system is Windows-64bit)
C:Python27>pip install lxml
Collecting lxml
Downloading lxml-3.8.0-cp27-cp27m-win32.whl (2.9MB)
100% |################################| 2.9MB 20kB/s
Installing collected packages: lxml
Successfully installed lxml-3.8.0
So, I will go with @1man's answer.
add a comment |
I am using Python2.7 and Windows 64-bit system. I was getting the same error for lxml-3.8.0-cp27-cp27m-win_amd64.whl
while doing pip install lxml-3.8.0-cp27-cp27m-win_amd64.whl
Run pip install lxml
and it auto-detected and successfully installed the win32 version (though my system is Windows-64bit)
C:Python27>pip install lxml
Collecting lxml
Downloading lxml-3.8.0-cp27-cp27m-win32.whl (2.9MB)
100% |################################| 2.9MB 20kB/s
Installing collected packages: lxml
Successfully installed lxml-3.8.0
So, I will go with @1man's answer.
I am using Python2.7 and Windows 64-bit system. I was getting the same error for lxml-3.8.0-cp27-cp27m-win_amd64.whl
while doing pip install lxml-3.8.0-cp27-cp27m-win_amd64.whl
Run pip install lxml
and it auto-detected and successfully installed the win32 version (though my system is Windows-64bit)
C:Python27>pip install lxml
Collecting lxml
Downloading lxml-3.8.0-cp27-cp27m-win32.whl (2.9MB)
100% |################################| 2.9MB 20kB/s
Installing collected packages: lxml
Successfully installed lxml-3.8.0
So, I will go with @1man's answer.
answered Sep 10 '17 at 7:32
somnathchakrabartisomnathchakrabarti
1,36274873
1,36274873
add a comment |
add a comment |
During Tensorflow configuration I specified python3.6. But default python on my system is python2.7. Thus pip in my case means pip for 2.7. For me
pip3 install /tmp/tensorflow_pkg/NAME.whl
did the trick.
add a comment |
During Tensorflow configuration I specified python3.6. But default python on my system is python2.7. Thus pip in my case means pip for 2.7. For me
pip3 install /tmp/tensorflow_pkg/NAME.whl
did the trick.
add a comment |
During Tensorflow configuration I specified python3.6. But default python on my system is python2.7. Thus pip in my case means pip for 2.7. For me
pip3 install /tmp/tensorflow_pkg/NAME.whl
did the trick.
During Tensorflow configuration I specified python3.6. But default python on my system is python2.7. Thus pip in my case means pip for 2.7. For me
pip3 install /tmp/tensorflow_pkg/NAME.whl
did the trick.
answered Oct 1 '17 at 15:40


Vladimir VlasovVladimir Vlasov
72631228
72631228
add a comment |
add a comment |
In my case [Win64, Python 2.7, cygwin] the issue was with a missing gcc
.
Using apt-cyg install gcc-core
enabled me to then use pip2 wheel ...
to install my wheels automatically.
add a comment |
In my case [Win64, Python 2.7, cygwin] the issue was with a missing gcc
.
Using apt-cyg install gcc-core
enabled me to then use pip2 wheel ...
to install my wheels automatically.
add a comment |
In my case [Win64, Python 2.7, cygwin] the issue was with a missing gcc
.
Using apt-cyg install gcc-core
enabled me to then use pip2 wheel ...
to install my wheels automatically.
In my case [Win64, Python 2.7, cygwin] the issue was with a missing gcc
.
Using apt-cyg install gcc-core
enabled me to then use pip2 wheel ...
to install my wheels automatically.
answered Jan 5 '18 at 15:45


yeliabsalohcinyeliabsalohcin
403311
403311
add a comment |
add a comment |
It's better to check the version of python where you want to install your package.
If the wheel was built for python3 and your python version is python2.x you may get this error.
While installing using pip follow this convention
python2 -m pip install XXXXXX.whl #if .whl is for python2
python3 -m pip install XXXXXX.whl #if .whl is for python3
I run the code '!python -m pip install Twisted-17.9.0-cp36-cp36m-win_amd64.whl' but I get this error: 'Requirement 'Twisted-17.9.0-cp36-cp36m-win_amd64.whl' looks like a filename, but the file does not exist Twisted-17.9.0-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.'
– user2356563
Feb 13 at 4:10
add a comment |
It's better to check the version of python where you want to install your package.
If the wheel was built for python3 and your python version is python2.x you may get this error.
While installing using pip follow this convention
python2 -m pip install XXXXXX.whl #if .whl is for python2
python3 -m pip install XXXXXX.whl #if .whl is for python3
I run the code '!python -m pip install Twisted-17.9.0-cp36-cp36m-win_amd64.whl' but I get this error: 'Requirement 'Twisted-17.9.0-cp36-cp36m-win_amd64.whl' looks like a filename, but the file does not exist Twisted-17.9.0-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.'
– user2356563
Feb 13 at 4:10
add a comment |
It's better to check the version of python where you want to install your package.
If the wheel was built for python3 and your python version is python2.x you may get this error.
While installing using pip follow this convention
python2 -m pip install XXXXXX.whl #if .whl is for python2
python3 -m pip install XXXXXX.whl #if .whl is for python3
It's better to check the version of python where you want to install your package.
If the wheel was built for python3 and your python version is python2.x you may get this error.
While installing using pip follow this convention
python2 -m pip install XXXXXX.whl #if .whl is for python2
python3 -m pip install XXXXXX.whl #if .whl is for python3
answered Aug 2 '18 at 3:46
Patel SunilPatel Sunil
18756
18756
I run the code '!python -m pip install Twisted-17.9.0-cp36-cp36m-win_amd64.whl' but I get this error: 'Requirement 'Twisted-17.9.0-cp36-cp36m-win_amd64.whl' looks like a filename, but the file does not exist Twisted-17.9.0-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.'
– user2356563
Feb 13 at 4:10
add a comment |
I run the code '!python -m pip install Twisted-17.9.0-cp36-cp36m-win_amd64.whl' but I get this error: 'Requirement 'Twisted-17.9.0-cp36-cp36m-win_amd64.whl' looks like a filename, but the file does not exist Twisted-17.9.0-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.'
– user2356563
Feb 13 at 4:10
I run the code '!python -m pip install Twisted-17.9.0-cp36-cp36m-win_amd64.whl' but I get this error: 'Requirement 'Twisted-17.9.0-cp36-cp36m-win_amd64.whl' looks like a filename, but the file does not exist Twisted-17.9.0-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.'
– user2356563
Feb 13 at 4:10
I run the code '!python -m pip install Twisted-17.9.0-cp36-cp36m-win_amd64.whl' but I get this error: 'Requirement 'Twisted-17.9.0-cp36-cp36m-win_amd64.whl' looks like a filename, but the file does not exist Twisted-17.9.0-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.'
– user2356563
Feb 13 at 4:10
add a comment |
In my case it had to do with not having installed previously the GDAL core. For a guide on how to install the GDAL and Basemap libraries go to:
https://github.com/felipunky/GISPython/blob/master/README.md
add a comment |
In my case it had to do with not having installed previously the GDAL core. For a guide on how to install the GDAL and Basemap libraries go to:
https://github.com/felipunky/GISPython/blob/master/README.md
add a comment |
In my case it had to do with not having installed previously the GDAL core. For a guide on how to install the GDAL and Basemap libraries go to:
https://github.com/felipunky/GISPython/blob/master/README.md
In my case it had to do with not having installed previously the GDAL core. For a guide on how to install the GDAL and Basemap libraries go to:
https://github.com/felipunky/GISPython/blob/master/README.md
answered Nov 4 '18 at 21:02


Felipe GutierrezFelipe Gutierrez
7817
7817
add a comment |
add a comment |
For me, it worked when I selected the correct bit of my Python version, NOT the one of my computer version.
Mine is 32bit, and my computer is 64bit. That was the problem and the 32bit version of fixed it.
To be exact, here is the one that I downloaded and worked for me:
mysqlclient-1.3.13-cp37-cp37m-win32.whl
Once again, just make sure to chose your python version of bits and not your system one.
add a comment |
For me, it worked when I selected the correct bit of my Python version, NOT the one of my computer version.
Mine is 32bit, and my computer is 64bit. That was the problem and the 32bit version of fixed it.
To be exact, here is the one that I downloaded and worked for me:
mysqlclient-1.3.13-cp37-cp37m-win32.whl
Once again, just make sure to chose your python version of bits and not your system one.
add a comment |
For me, it worked when I selected the correct bit of my Python version, NOT the one of my computer version.
Mine is 32bit, and my computer is 64bit. That was the problem and the 32bit version of fixed it.
To be exact, here is the one that I downloaded and worked for me:
mysqlclient-1.3.13-cp37-cp37m-win32.whl
Once again, just make sure to chose your python version of bits and not your system one.
For me, it worked when I selected the correct bit of my Python version, NOT the one of my computer version.
Mine is 32bit, and my computer is 64bit. That was the problem and the 32bit version of fixed it.
To be exact, here is the one that I downloaded and worked for me:
mysqlclient-1.3.13-cp37-cp37m-win32.whl
Once again, just make sure to chose your python version of bits and not your system one.
edited Dec 6 '18 at 18:12
answered Dec 6 '18 at 18:02
FouadDevFouadDev
867
867
add a comment |
add a comment |
I tried a bunch of the stuff above to no avail.
Previously, I upgraded to pip 18.1.
Kept getting the following error when trying (for pyFltk):
from fltk import *
ImportError: DLL load failed %1 is not a valid Win32 Application
I was getting all sorts of errors about the *.whl file not being supported by my machine or something about being unable to remove the correct files from distutils.
Went back to my notes and they indicated that the whl file:
pyFltk-1.3.3.1-cp36-cp36m-win_amd64.whl but I kept getting the error above sooo...
it required pip 9.0.3 to install.
I downgraded my version of pip to 9.0.3
pip install pip=9.0.3
and the .whl file installed properly.
This is also related to: here
add a comment |
I tried a bunch of the stuff above to no avail.
Previously, I upgraded to pip 18.1.
Kept getting the following error when trying (for pyFltk):
from fltk import *
ImportError: DLL load failed %1 is not a valid Win32 Application
I was getting all sorts of errors about the *.whl file not being supported by my machine or something about being unable to remove the correct files from distutils.
Went back to my notes and they indicated that the whl file:
pyFltk-1.3.3.1-cp36-cp36m-win_amd64.whl but I kept getting the error above sooo...
it required pip 9.0.3 to install.
I downgraded my version of pip to 9.0.3
pip install pip=9.0.3
and the .whl file installed properly.
This is also related to: here
add a comment |
I tried a bunch of the stuff above to no avail.
Previously, I upgraded to pip 18.1.
Kept getting the following error when trying (for pyFltk):
from fltk import *
ImportError: DLL load failed %1 is not a valid Win32 Application
I was getting all sorts of errors about the *.whl file not being supported by my machine or something about being unable to remove the correct files from distutils.
Went back to my notes and they indicated that the whl file:
pyFltk-1.3.3.1-cp36-cp36m-win_amd64.whl but I kept getting the error above sooo...
it required pip 9.0.3 to install.
I downgraded my version of pip to 9.0.3
pip install pip=9.0.3
and the .whl file installed properly.
This is also related to: here
I tried a bunch of the stuff above to no avail.
Previously, I upgraded to pip 18.1.
Kept getting the following error when trying (for pyFltk):
from fltk import *
ImportError: DLL load failed %1 is not a valid Win32 Application
I was getting all sorts of errors about the *.whl file not being supported by my machine or something about being unable to remove the correct files from distutils.
Went back to my notes and they indicated that the whl file:
pyFltk-1.3.3.1-cp36-cp36m-win_amd64.whl but I kept getting the error above sooo...
it required pip 9.0.3 to install.
I downgraded my version of pip to 9.0.3
pip install pip=9.0.3
and the .whl file installed properly.
This is also related to: here
answered Jan 2 at 19:23


Brian S. PennBrian S. Penn
263
263
add a comment |
add a comment |
I was trying to verify the installation of TensorFlow as specified here on a newly created virtual environment on Python 3.6. On running:
pip3 install --ignore-installed --upgrade "/Users/Salman/Downloads/tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl"
I get the error and/or warning:
tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl is not a supported wheel on this platform.
Since I had previously upgraded from pip to pip3, I simply replaced pip with pip3 as in:
pip3 install --ignore-installed --upgrade "/Users/Salman/Downloads/tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl"
and it worked like a charm!
add a comment |
I was trying to verify the installation of TensorFlow as specified here on a newly created virtual environment on Python 3.6. On running:
pip3 install --ignore-installed --upgrade "/Users/Salman/Downloads/tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl"
I get the error and/or warning:
tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl is not a supported wheel on this platform.
Since I had previously upgraded from pip to pip3, I simply replaced pip with pip3 as in:
pip3 install --ignore-installed --upgrade "/Users/Salman/Downloads/tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl"
and it worked like a charm!
add a comment |
I was trying to verify the installation of TensorFlow as specified here on a newly created virtual environment on Python 3.6. On running:
pip3 install --ignore-installed --upgrade "/Users/Salman/Downloads/tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl"
I get the error and/or warning:
tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl is not a supported wheel on this platform.
Since I had previously upgraded from pip to pip3, I simply replaced pip with pip3 as in:
pip3 install --ignore-installed --upgrade "/Users/Salman/Downloads/tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl"
and it worked like a charm!
I was trying to verify the installation of TensorFlow as specified here on a newly created virtual environment on Python 3.6. On running:
pip3 install --ignore-installed --upgrade "/Users/Salman/Downloads/tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl"
I get the error and/or warning:
tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl is not a supported wheel on this platform.
Since I had previously upgraded from pip to pip3, I simply replaced pip with pip3 as in:
pip3 install --ignore-installed --upgrade "/Users/Salman/Downloads/tensorflow-1.12.0-cp37-cp37m-macosx_10_13_x86_64.whl"
and it worked like a charm!
answered Jan 20 at 20:44
Salman ShokhaSalman Shokha
11
11
add a comment |
add a comment |
I had the same problem
I downloaded latest pip from https://pypi.org/project/pip/#files
and then....
pip install << downloaded file location >>
then pygame and kivy installation worked...
Thanks...!!
add a comment |
I had the same problem
I downloaded latest pip from https://pypi.org/project/pip/#files
and then....
pip install << downloaded file location >>
then pygame and kivy installation worked...
Thanks...!!
add a comment |
I had the same problem
I downloaded latest pip from https://pypi.org/project/pip/#files
and then....
pip install << downloaded file location >>
then pygame and kivy installation worked...
Thanks...!!
I had the same problem
I downloaded latest pip from https://pypi.org/project/pip/#files
and then....
pip install << downloaded file location >>
then pygame and kivy installation worked...
Thanks...!!
answered Mar 14 at 4:41
Vinay DavdaVinay Davda
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f28568070%2ffilename-whl-is-not-supported-wheel-on-this-platform%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown