filename.whl is not supported wheel on this platform












220















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?










share|improve this question





























    220















    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?










    share|improve this question



























      220












      220








      220


      28






      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 2 '17 at 13:49









      Ij888

      509




      509










      asked Feb 17 '15 at 18:05









      lskrinjarlskrinjar

      1,83662039




      1,83662039
























          23 Answers
          23






          active

          oldest

          votes


















          288














          cp33 means CPython 3.3 you need scipy‑0.15.1‑cp27‑none‑win_amd64.whl instead.






          share|improve this answer



















          • 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






          • 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 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





            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



















          157














          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.






          share|improve this answer





















          • 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



















          81














          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





          share|improve this answer



















          • 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



















          16














          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.






          share|improve this answer





















          • 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



















          9














          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



          1. 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 .





          1. 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





          1. 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 !!!!






          share|improve this answer


























          • 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



















          6














          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 :-)






          share|improve this answer





















          • 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



















          3














          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.






          share|improve this answer































            2














            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!






            share|improve this answer































              2














              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.






              share|improve this answer































                2














                Things to check:




                1. You are downloading proper version like cp27 (means for python 2.7) cp36(means for python 3.6).


                2. 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.




                1. 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)



                2. Check if your pip is updated or not. If not you can use



                  python -m pip install -upgrade pip








                share|improve this answer

































                  2














                  I'm deploying Flask using Python34 on IIS.
                  The following steps worked for me




                  1. Upgrade pip

                  2. Install the wheel file for numpy

                  3. pip install pandas






                  share|improve this answer































                    1














                    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.






                    share|improve this answer































                      0














                      try conda for installation,
                      seems to resolve versions
                      on the fly:
                      conda install scikit-learn






                      share|improve this answer





















                      • 2





                        The OP is trying to install SciPy, not scikit-learn.

                        – tuomastik
                        May 28 '17 at 9:35



















                      0














                      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. :)






                      share|improve this answer































                        0














                        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.






                        share|improve this answer































                          0














                          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.






                          share|improve this answer































                            0














                            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.






                            share|improve this answer































                              0














                              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





                              share|improve this answer
























                              • 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



















                              0














                              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






                              share|improve this answer































                                0














                                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.






                                share|improve this answer

































                                  0














                                  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






                                  share|improve this answer































                                    0














                                    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!






                                    share|improve this answer































                                      0














                                      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...!!






                                      share|improve this answer
























                                        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
                                        });


                                        }
                                        });














                                        draft saved

                                        draft discarded


















                                        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









                                        288














                                        cp33 means CPython 3.3 you need scipy‑0.15.1‑cp27‑none‑win_amd64.whl instead.






                                        share|improve this answer



















                                        • 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






                                        • 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 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





                                          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
















                                        288














                                        cp33 means CPython 3.3 you need scipy‑0.15.1‑cp27‑none‑win_amd64.whl instead.






                                        share|improve this answer



















                                        • 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






                                        • 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 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





                                          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














                                        288












                                        288








                                        288







                                        cp33 means CPython 3.3 you need scipy‑0.15.1‑cp27‑none‑win_amd64.whl instead.






                                        share|improve this answer













                                        cp33 means CPython 3.3 you need scipy‑0.15.1‑cp27‑none‑win_amd64.whl instead.







                                        share|improve this answer












                                        share|improve this answer



                                        share|improve this answer










                                        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 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





                                          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 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





                                          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





                                          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





                                          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 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





                                          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













                                        157














                                        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.






                                        share|improve this answer





















                                        • 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
















                                        157














                                        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.






                                        share|improve this answer





















                                        • 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














                                        157












                                        157








                                        157







                                        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.






                                        share|improve this answer















                                        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.







                                        share|improve this answer














                                        share|improve this answer



                                        share|improve this answer








                                        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














                                        • 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











                                        81














                                        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





                                        share|improve this answer



















                                        • 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
















                                        81














                                        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





                                        share|improve this answer



















                                        • 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














                                        81












                                        81








                                        81







                                        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





                                        share|improve this answer













                                        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






                                        share|improve this answer












                                        share|improve this answer



                                        share|improve this answer










                                        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














                                        • 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











                                        16














                                        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.






                                        share|improve this answer





















                                        • 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
















                                        16














                                        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.






                                        share|improve this answer





















                                        • 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














                                        16












                                        16








                                        16







                                        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.






                                        share|improve this answer















                                        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.







                                        share|improve this answer














                                        share|improve this answer



                                        share|improve this answer








                                        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














                                        • 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











                                        9














                                        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



                                        1. 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 .





                                        1. 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





                                        1. 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 !!!!






                                        share|improve this answer


























                                        • 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
















                                        9














                                        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



                                        1. 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 .





                                        1. 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





                                        1. 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 !!!!






                                        share|improve this answer


























                                        • 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














                                        9












                                        9








                                        9







                                        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



                                        1. 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 .





                                        1. 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





                                        1. 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 !!!!






                                        share|improve this answer















                                        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



                                        1. 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 .





                                        1. 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





                                        1. 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 !!!!







                                        share|improve this answer














                                        share|improve this answer



                                        share|improve this answer








                                        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 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

















                                        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











                                        6














                                        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 :-)






                                        share|improve this answer





















                                        • 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
















                                        6














                                        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 :-)






                                        share|improve this answer





















                                        • 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














                                        6












                                        6








                                        6







                                        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 :-)






                                        share|improve this answer















                                        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 :-)







                                        share|improve this answer














                                        share|improve this answer



                                        share|improve this answer








                                        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














                                        • 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











                                        3














                                        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.






                                        share|improve this answer




























                                          3














                                          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.






                                          share|improve this answer


























                                            3












                                            3








                                            3







                                            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.






                                            share|improve this answer













                                            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.







                                            share|improve this answer












                                            share|improve this answer



                                            share|improve this answer










                                            answered Oct 5 '18 at 8:09









                                            Ivan TalalaevIvan Talalaev

                                            1,50222128




                                            1,50222128























                                                2














                                                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!






                                                share|improve this answer




























                                                  2














                                                  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!






                                                  share|improve this answer


























                                                    2












                                                    2








                                                    2







                                                    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!






                                                    share|improve this answer













                                                    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!







                                                    share|improve this answer












                                                    share|improve this answer



                                                    share|improve this answer










                                                    answered Jul 27 '16 at 21:03









                                                    OgglasOgglas

                                                    16.1k699135




                                                    16.1k699135























                                                        2














                                                        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.






                                                        share|improve this answer




























                                                          2














                                                          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.






                                                          share|improve this answer


























                                                            2












                                                            2








                                                            2







                                                            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.






                                                            share|improve this answer













                                                            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.







                                                            share|improve this answer












                                                            share|improve this answer



                                                            share|improve this answer










                                                            answered Nov 29 '16 at 7:39









                                                            u_found_meu_found_me

                                                            214




                                                            214























                                                                2














                                                                Things to check:




                                                                1. You are downloading proper version like cp27 (means for python 2.7) cp36(means for python 3.6).


                                                                2. 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.




                                                                1. 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)



                                                                2. Check if your pip is updated or not. If not you can use



                                                                  python -m pip install -upgrade pip








                                                                share|improve this answer






























                                                                  2














                                                                  Things to check:




                                                                  1. You are downloading proper version like cp27 (means for python 2.7) cp36(means for python 3.6).


                                                                  2. 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.




                                                                  1. 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)



                                                                  2. Check if your pip is updated or not. If not you can use



                                                                    python -m pip install -upgrade pip








                                                                  share|improve this answer




























                                                                    2












                                                                    2








                                                                    2







                                                                    Things to check:




                                                                    1. You are downloading proper version like cp27 (means for python 2.7) cp36(means for python 3.6).


                                                                    2. 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.




                                                                    1. 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)



                                                                    2. Check if your pip is updated or not. If not you can use



                                                                      python -m pip install -upgrade pip








                                                                    share|improve this answer















                                                                    Things to check:




                                                                    1. You are downloading proper version like cp27 (means for python 2.7) cp36(means for python 3.6).


                                                                    2. 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.




                                                                    1. 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)



                                                                    2. Check if your pip is updated or not. If not you can use



                                                                      python -m pip install -upgrade pip









                                                                    share|improve this answer














                                                                    share|improve this answer



                                                                    share|improve this answer








                                                                    edited Jun 24 '17 at 13:00









                                                                    taras

                                                                    3,49952333




                                                                    3,49952333










                                                                    answered Jun 24 '17 at 12:22









                                                                    krishnakrishna

                                                                    1,162719




                                                                    1,162719























                                                                        2














                                                                        I'm deploying Flask using Python34 on IIS.
                                                                        The following steps worked for me




                                                                        1. Upgrade pip

                                                                        2. Install the wheel file for numpy

                                                                        3. pip install pandas






                                                                        share|improve this answer




























                                                                          2














                                                                          I'm deploying Flask using Python34 on IIS.
                                                                          The following steps worked for me




                                                                          1. Upgrade pip

                                                                          2. Install the wheel file for numpy

                                                                          3. pip install pandas






                                                                          share|improve this answer


























                                                                            2












                                                                            2








                                                                            2







                                                                            I'm deploying Flask using Python34 on IIS.
                                                                            The following steps worked for me




                                                                            1. Upgrade pip

                                                                            2. Install the wheel file for numpy

                                                                            3. pip install pandas






                                                                            share|improve this answer













                                                                            I'm deploying Flask using Python34 on IIS.
                                                                            The following steps worked for me




                                                                            1. Upgrade pip

                                                                            2. Install the wheel file for numpy

                                                                            3. pip install pandas







                                                                            share|improve this answer












                                                                            share|improve this answer



                                                                            share|improve this answer










                                                                            answered Mar 9 '18 at 13:41









                                                                            SteelSteel

                                                                            211




                                                                            211























                                                                                1














                                                                                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.






                                                                                share|improve this answer




























                                                                                  1














                                                                                  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.






                                                                                  share|improve this answer


























                                                                                    1












                                                                                    1








                                                                                    1







                                                                                    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.






                                                                                    share|improve this answer













                                                                                    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.







                                                                                    share|improve this answer












                                                                                    share|improve this answer



                                                                                    share|improve this answer










                                                                                    answered Jan 24 '17 at 22:20









                                                                                    Harsh TrivediHarsh Trivedi

                                                                                    111




                                                                                    111























                                                                                        0














                                                                                        try conda for installation,
                                                                                        seems to resolve versions
                                                                                        on the fly:
                                                                                        conda install scikit-learn






                                                                                        share|improve this answer





















                                                                                        • 2





                                                                                          The OP is trying to install SciPy, not scikit-learn.

                                                                                          – tuomastik
                                                                                          May 28 '17 at 9:35
















                                                                                        0














                                                                                        try conda for installation,
                                                                                        seems to resolve versions
                                                                                        on the fly:
                                                                                        conda install scikit-learn






                                                                                        share|improve this answer





















                                                                                        • 2





                                                                                          The OP is trying to install SciPy, not scikit-learn.

                                                                                          – tuomastik
                                                                                          May 28 '17 at 9:35














                                                                                        0












                                                                                        0








                                                                                        0







                                                                                        try conda for installation,
                                                                                        seems to resolve versions
                                                                                        on the fly:
                                                                                        conda install scikit-learn






                                                                                        share|improve this answer















                                                                                        try conda for installation,
                                                                                        seems to resolve versions
                                                                                        on the fly:
                                                                                        conda install scikit-learn







                                                                                        share|improve this answer














                                                                                        share|improve this answer



                                                                                        share|improve this answer








                                                                                        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














                                                                                        • 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











                                                                                        0














                                                                                        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. :)






                                                                                        share|improve this answer




























                                                                                          0














                                                                                          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. :)






                                                                                          share|improve this answer


























                                                                                            0












                                                                                            0








                                                                                            0







                                                                                            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. :)






                                                                                            share|improve this answer













                                                                                            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. :)







                                                                                            share|improve this answer












                                                                                            share|improve this answer



                                                                                            share|improve this answer










                                                                                            answered Jul 30 '17 at 13:19









                                                                                            RaHa VelShodehRaHa VelShodeh

                                                                                            287




                                                                                            287























                                                                                                0














                                                                                                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.






                                                                                                share|improve this answer




























                                                                                                  0














                                                                                                  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.






                                                                                                  share|improve this answer


























                                                                                                    0












                                                                                                    0








                                                                                                    0







                                                                                                    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.






                                                                                                    share|improve this 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.







                                                                                                    share|improve this answer












                                                                                                    share|improve this answer



                                                                                                    share|improve this answer










                                                                                                    answered Sep 10 '17 at 7:32









                                                                                                    somnathchakrabartisomnathchakrabarti

                                                                                                    1,36274873




                                                                                                    1,36274873























                                                                                                        0














                                                                                                        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.






                                                                                                        share|improve this answer




























                                                                                                          0














                                                                                                          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.






                                                                                                          share|improve this answer


























                                                                                                            0












                                                                                                            0








                                                                                                            0







                                                                                                            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.






                                                                                                            share|improve this answer













                                                                                                            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.







                                                                                                            share|improve this answer












                                                                                                            share|improve this answer



                                                                                                            share|improve this answer










                                                                                                            answered Oct 1 '17 at 15:40









                                                                                                            Vladimir VlasovVladimir Vlasov

                                                                                                            72631228




                                                                                                            72631228























                                                                                                                0














                                                                                                                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.






                                                                                                                share|improve this answer




























                                                                                                                  0














                                                                                                                  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.






                                                                                                                  share|improve this answer


























                                                                                                                    0












                                                                                                                    0








                                                                                                                    0







                                                                                                                    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.






                                                                                                                    share|improve this answer













                                                                                                                    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.







                                                                                                                    share|improve this answer












                                                                                                                    share|improve this answer



                                                                                                                    share|improve this answer










                                                                                                                    answered Jan 5 '18 at 15:45









                                                                                                                    yeliabsalohcinyeliabsalohcin

                                                                                                                    403311




                                                                                                                    403311























                                                                                                                        0














                                                                                                                        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





                                                                                                                        share|improve this answer
























                                                                                                                        • 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
















                                                                                                                        0














                                                                                                                        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





                                                                                                                        share|improve this answer
























                                                                                                                        • 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














                                                                                                                        0












                                                                                                                        0








                                                                                                                        0







                                                                                                                        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





                                                                                                                        share|improve this answer













                                                                                                                        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






                                                                                                                        share|improve this answer












                                                                                                                        share|improve this answer



                                                                                                                        share|improve this answer










                                                                                                                        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



















                                                                                                                        • 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











                                                                                                                        0














                                                                                                                        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






                                                                                                                        share|improve this answer




























                                                                                                                          0














                                                                                                                          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






                                                                                                                          share|improve this answer


























                                                                                                                            0












                                                                                                                            0








                                                                                                                            0







                                                                                                                            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






                                                                                                                            share|improve this answer













                                                                                                                            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







                                                                                                                            share|improve this answer












                                                                                                                            share|improve this answer



                                                                                                                            share|improve this answer










                                                                                                                            answered Nov 4 '18 at 21:02









                                                                                                                            Felipe GutierrezFelipe Gutierrez

                                                                                                                            7817




                                                                                                                            7817























                                                                                                                                0














                                                                                                                                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.






                                                                                                                                share|improve this answer






























                                                                                                                                  0














                                                                                                                                  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.






                                                                                                                                  share|improve this answer




























                                                                                                                                    0












                                                                                                                                    0








                                                                                                                                    0







                                                                                                                                    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.






                                                                                                                                    share|improve this answer















                                                                                                                                    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.







                                                                                                                                    share|improve this answer














                                                                                                                                    share|improve this answer



                                                                                                                                    share|improve this answer








                                                                                                                                    edited Dec 6 '18 at 18:12

























                                                                                                                                    answered Dec 6 '18 at 18:02









                                                                                                                                    FouadDevFouadDev

                                                                                                                                    867




                                                                                                                                    867























                                                                                                                                        0














                                                                                                                                        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






                                                                                                                                        share|improve this answer




























                                                                                                                                          0














                                                                                                                                          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






                                                                                                                                          share|improve this answer


























                                                                                                                                            0












                                                                                                                                            0








                                                                                                                                            0







                                                                                                                                            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






                                                                                                                                            share|improve this answer













                                                                                                                                            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







                                                                                                                                            share|improve this answer












                                                                                                                                            share|improve this answer



                                                                                                                                            share|improve this answer










                                                                                                                                            answered Jan 2 at 19:23









                                                                                                                                            Brian S. PennBrian S. Penn

                                                                                                                                            263




                                                                                                                                            263























                                                                                                                                                0














                                                                                                                                                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!






                                                                                                                                                share|improve this answer




























                                                                                                                                                  0














                                                                                                                                                  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!






                                                                                                                                                  share|improve this answer


























                                                                                                                                                    0












                                                                                                                                                    0








                                                                                                                                                    0







                                                                                                                                                    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!






                                                                                                                                                    share|improve this answer













                                                                                                                                                    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!







                                                                                                                                                    share|improve this answer












                                                                                                                                                    share|improve this answer



                                                                                                                                                    share|improve this answer










                                                                                                                                                    answered Jan 20 at 20:44









                                                                                                                                                    Salman ShokhaSalman Shokha

                                                                                                                                                    11




                                                                                                                                                    11























                                                                                                                                                        0














                                                                                                                                                        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...!!






                                                                                                                                                        share|improve this answer




























                                                                                                                                                          0














                                                                                                                                                          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...!!






                                                                                                                                                          share|improve this answer


























                                                                                                                                                            0












                                                                                                                                                            0








                                                                                                                                                            0







                                                                                                                                                            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...!!






                                                                                                                                                            share|improve this answer













                                                                                                                                                            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...!!







                                                                                                                                                            share|improve this answer












                                                                                                                                                            share|improve this answer



                                                                                                                                                            share|improve this answer










                                                                                                                                                            answered Mar 14 at 4:41









                                                                                                                                                            Vinay DavdaVinay Davda

                                                                                                                                                            1




                                                                                                                                                            1






























                                                                                                                                                                draft saved

                                                                                                                                                                draft discarded




















































                                                                                                                                                                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.




                                                                                                                                                                draft saved


                                                                                                                                                                draft discarded














                                                                                                                                                                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





















































                                                                                                                                                                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







                                                                                                                                                                Popular posts from this blog

                                                                                                                                                                MongoDB - Not Authorized To Execute Command

                                                                                                                                                                How to fix TextFormField cause rebuild widget in Flutter

                                                                                                                                                                in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith