pyproj-1.9.5.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform












1















I am trying to set-up Basemap on for my python code and one of its requirements is pyproj. I have downloaded pyproj and base map from here



My Python version is 2.7.13



My pip command is upgrade to latest version.



Also setuptools is also upgraded to latest version using below command



 pip install --upgrade setuptools


My Linux OS is x86_64 found by command



 uname -m


Now when I run below command:



pip install basemap-1.2.0-cp27-cp27m-win_amd64.whl


or



pip install pyproj-1.9.5.1-cp27-cp27m-win_amd64.whl


I see this error:



basemap-1.2.0-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.


and



pyproj-1.9.5.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.


I ran below command to find the supported wheels:



 python -c "from pip import pep425tags;print(wheel.pep425tags.get_supported())"


I got below output:



 [('cp27', 'cp27mu', 'linux_x86_64'), ('cp27', 'none', 'linux_x86_64'), ('cp27', 'none', 'any'), ('cp2', 'none', 'any'), ('cp26', 'none', 'any'), ('cp25', 'none', 'any'), ('cp24', 'none', 'any'), ('cp23', 'none', 'any'), ('cp22', 'none', 'any'), ('cp21', 'none', 'any'), ('cp20', 'none', 'any'), ('py2', 'none', 'linux_x86_64'), ('py27', 'none', 'any'), ('py2', 'none', 'any'), ('py26', 'none', 'any'), ('py25', 'none', 'any'), ('py24', 'none', 'any'), ('py23', 'none', 'any'), ('py22', 'none', 'any'), ('py21', 'none', 'any'), ('py20', 'none', 'any')]


Can someone help me with my issue?










share|improve this question

























  • the wheels you are trying to install are for 64bit windows (win_amd64 part). Judging by the PEP 425 tags you posted, you need wheels named <pkg>-<ver>-cp27-cp27mu-manylinux1_x86_64.whl (beware that cp27m in wheel name won't work either! You need wheels for Python with wide unicode support).

    – hoefling
    Nov 27 '18 at 20:18











  • Thanks! I have looked for linux version of this basemap file, and couldn't find anything. Can you help me with that?

    – PDas
    Nov 28 '18 at 0:04






  • 3





    pyproj is available on PyPI, so pip install pyproj will do. As for basemap, it is replaced by cartopy which can be also installed from PyPI: pip install cartopy. If you really need basemap (e.g. to support some legacy code), you can install basemap directly from github: pip install --user git+https://github.com/matplotlib/basemap.git.

    – hoefling
    Nov 28 '18 at 0:13











  • Thanks a lot. I've installed pyproj using pip install pyproj. But pip install cartopy is giving me an error: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-n71hEq/cartopy/.

    – PDas
    Nov 29 '18 at 19:05













  • To add, I've installed all the dependencies required for cartopy. Except proj4. For proj4, I am getting pip install PROJ4 Collecting PROJ4 Could not find a version that satisfies the requirement PROJ4 (from versions: ) No matching distribution found for PROJ4

    – PDas
    Nov 29 '18 at 19:32
















1















I am trying to set-up Basemap on for my python code and one of its requirements is pyproj. I have downloaded pyproj and base map from here



My Python version is 2.7.13



My pip command is upgrade to latest version.



Also setuptools is also upgraded to latest version using below command



 pip install --upgrade setuptools


My Linux OS is x86_64 found by command



 uname -m


Now when I run below command:



pip install basemap-1.2.0-cp27-cp27m-win_amd64.whl


or



pip install pyproj-1.9.5.1-cp27-cp27m-win_amd64.whl


I see this error:



basemap-1.2.0-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.


and



pyproj-1.9.5.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.


I ran below command to find the supported wheels:



 python -c "from pip import pep425tags;print(wheel.pep425tags.get_supported())"


I got below output:



 [('cp27', 'cp27mu', 'linux_x86_64'), ('cp27', 'none', 'linux_x86_64'), ('cp27', 'none', 'any'), ('cp2', 'none', 'any'), ('cp26', 'none', 'any'), ('cp25', 'none', 'any'), ('cp24', 'none', 'any'), ('cp23', 'none', 'any'), ('cp22', 'none', 'any'), ('cp21', 'none', 'any'), ('cp20', 'none', 'any'), ('py2', 'none', 'linux_x86_64'), ('py27', 'none', 'any'), ('py2', 'none', 'any'), ('py26', 'none', 'any'), ('py25', 'none', 'any'), ('py24', 'none', 'any'), ('py23', 'none', 'any'), ('py22', 'none', 'any'), ('py21', 'none', 'any'), ('py20', 'none', 'any')]


Can someone help me with my issue?










share|improve this question

























  • the wheels you are trying to install are for 64bit windows (win_amd64 part). Judging by the PEP 425 tags you posted, you need wheels named <pkg>-<ver>-cp27-cp27mu-manylinux1_x86_64.whl (beware that cp27m in wheel name won't work either! You need wheels for Python with wide unicode support).

    – hoefling
    Nov 27 '18 at 20:18











  • Thanks! I have looked for linux version of this basemap file, and couldn't find anything. Can you help me with that?

    – PDas
    Nov 28 '18 at 0:04






  • 3





    pyproj is available on PyPI, so pip install pyproj will do. As for basemap, it is replaced by cartopy which can be also installed from PyPI: pip install cartopy. If you really need basemap (e.g. to support some legacy code), you can install basemap directly from github: pip install --user git+https://github.com/matplotlib/basemap.git.

    – hoefling
    Nov 28 '18 at 0:13











  • Thanks a lot. I've installed pyproj using pip install pyproj. But pip install cartopy is giving me an error: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-n71hEq/cartopy/.

    – PDas
    Nov 29 '18 at 19:05













  • To add, I've installed all the dependencies required for cartopy. Except proj4. For proj4, I am getting pip install PROJ4 Collecting PROJ4 Could not find a version that satisfies the requirement PROJ4 (from versions: ) No matching distribution found for PROJ4

    – PDas
    Nov 29 '18 at 19:32














1












1








1








I am trying to set-up Basemap on for my python code and one of its requirements is pyproj. I have downloaded pyproj and base map from here



My Python version is 2.7.13



My pip command is upgrade to latest version.



Also setuptools is also upgraded to latest version using below command



 pip install --upgrade setuptools


My Linux OS is x86_64 found by command



 uname -m


Now when I run below command:



pip install basemap-1.2.0-cp27-cp27m-win_amd64.whl


or



pip install pyproj-1.9.5.1-cp27-cp27m-win_amd64.whl


I see this error:



basemap-1.2.0-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.


and



pyproj-1.9.5.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.


I ran below command to find the supported wheels:



 python -c "from pip import pep425tags;print(wheel.pep425tags.get_supported())"


I got below output:



 [('cp27', 'cp27mu', 'linux_x86_64'), ('cp27', 'none', 'linux_x86_64'), ('cp27', 'none', 'any'), ('cp2', 'none', 'any'), ('cp26', 'none', 'any'), ('cp25', 'none', 'any'), ('cp24', 'none', 'any'), ('cp23', 'none', 'any'), ('cp22', 'none', 'any'), ('cp21', 'none', 'any'), ('cp20', 'none', 'any'), ('py2', 'none', 'linux_x86_64'), ('py27', 'none', 'any'), ('py2', 'none', 'any'), ('py26', 'none', 'any'), ('py25', 'none', 'any'), ('py24', 'none', 'any'), ('py23', 'none', 'any'), ('py22', 'none', 'any'), ('py21', 'none', 'any'), ('py20', 'none', 'any')]


Can someone help me with my issue?










share|improve this question
















I am trying to set-up Basemap on for my python code and one of its requirements is pyproj. I have downloaded pyproj and base map from here



My Python version is 2.7.13



My pip command is upgrade to latest version.



Also setuptools is also upgraded to latest version using below command



 pip install --upgrade setuptools


My Linux OS is x86_64 found by command



 uname -m


Now when I run below command:



pip install basemap-1.2.0-cp27-cp27m-win_amd64.whl


or



pip install pyproj-1.9.5.1-cp27-cp27m-win_amd64.whl


I see this error:



basemap-1.2.0-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.


and



pyproj-1.9.5.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.


I ran below command to find the supported wheels:



 python -c "from pip import pep425tags;print(wheel.pep425tags.get_supported())"


I got below output:



 [('cp27', 'cp27mu', 'linux_x86_64'), ('cp27', 'none', 'linux_x86_64'), ('cp27', 'none', 'any'), ('cp2', 'none', 'any'), ('cp26', 'none', 'any'), ('cp25', 'none', 'any'), ('cp24', 'none', 'any'), ('cp23', 'none', 'any'), ('cp22', 'none', 'any'), ('cp21', 'none', 'any'), ('cp20', 'none', 'any'), ('py2', 'none', 'linux_x86_64'), ('py27', 'none', 'any'), ('py2', 'none', 'any'), ('py26', 'none', 'any'), ('py25', 'none', 'any'), ('py24', 'none', 'any'), ('py23', 'none', 'any'), ('py22', 'none', 'any'), ('py21', 'none', 'any'), ('py20', 'none', 'any')]


Can someone help me with my issue?







python python-2.7 pip matplotlib-basemap






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 28 '18 at 8:23









Ivan Kolesnikov

1,26111033




1,26111033










asked Nov 27 '18 at 19:45









PDasPDas

62




62













  • the wheels you are trying to install are for 64bit windows (win_amd64 part). Judging by the PEP 425 tags you posted, you need wheels named <pkg>-<ver>-cp27-cp27mu-manylinux1_x86_64.whl (beware that cp27m in wheel name won't work either! You need wheels for Python with wide unicode support).

    – hoefling
    Nov 27 '18 at 20:18











  • Thanks! I have looked for linux version of this basemap file, and couldn't find anything. Can you help me with that?

    – PDas
    Nov 28 '18 at 0:04






  • 3





    pyproj is available on PyPI, so pip install pyproj will do. As for basemap, it is replaced by cartopy which can be also installed from PyPI: pip install cartopy. If you really need basemap (e.g. to support some legacy code), you can install basemap directly from github: pip install --user git+https://github.com/matplotlib/basemap.git.

    – hoefling
    Nov 28 '18 at 0:13











  • Thanks a lot. I've installed pyproj using pip install pyproj. But pip install cartopy is giving me an error: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-n71hEq/cartopy/.

    – PDas
    Nov 29 '18 at 19:05













  • To add, I've installed all the dependencies required for cartopy. Except proj4. For proj4, I am getting pip install PROJ4 Collecting PROJ4 Could not find a version that satisfies the requirement PROJ4 (from versions: ) No matching distribution found for PROJ4

    – PDas
    Nov 29 '18 at 19:32



















  • the wheels you are trying to install are for 64bit windows (win_amd64 part). Judging by the PEP 425 tags you posted, you need wheels named <pkg>-<ver>-cp27-cp27mu-manylinux1_x86_64.whl (beware that cp27m in wheel name won't work either! You need wheels for Python with wide unicode support).

    – hoefling
    Nov 27 '18 at 20:18











  • Thanks! I have looked for linux version of this basemap file, and couldn't find anything. Can you help me with that?

    – PDas
    Nov 28 '18 at 0:04






  • 3





    pyproj is available on PyPI, so pip install pyproj will do. As for basemap, it is replaced by cartopy which can be also installed from PyPI: pip install cartopy. If you really need basemap (e.g. to support some legacy code), you can install basemap directly from github: pip install --user git+https://github.com/matplotlib/basemap.git.

    – hoefling
    Nov 28 '18 at 0:13











  • Thanks a lot. I've installed pyproj using pip install pyproj. But pip install cartopy is giving me an error: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-n71hEq/cartopy/.

    – PDas
    Nov 29 '18 at 19:05













  • To add, I've installed all the dependencies required for cartopy. Except proj4. For proj4, I am getting pip install PROJ4 Collecting PROJ4 Could not find a version that satisfies the requirement PROJ4 (from versions: ) No matching distribution found for PROJ4

    – PDas
    Nov 29 '18 at 19:32

















the wheels you are trying to install are for 64bit windows (win_amd64 part). Judging by the PEP 425 tags you posted, you need wheels named <pkg>-<ver>-cp27-cp27mu-manylinux1_x86_64.whl (beware that cp27m in wheel name won't work either! You need wheels for Python with wide unicode support).

– hoefling
Nov 27 '18 at 20:18





the wheels you are trying to install are for 64bit windows (win_amd64 part). Judging by the PEP 425 tags you posted, you need wheels named <pkg>-<ver>-cp27-cp27mu-manylinux1_x86_64.whl (beware that cp27m in wheel name won't work either! You need wheels for Python with wide unicode support).

– hoefling
Nov 27 '18 at 20:18













Thanks! I have looked for linux version of this basemap file, and couldn't find anything. Can you help me with that?

– PDas
Nov 28 '18 at 0:04





Thanks! I have looked for linux version of this basemap file, and couldn't find anything. Can you help me with that?

– PDas
Nov 28 '18 at 0:04




3




3





pyproj is available on PyPI, so pip install pyproj will do. As for basemap, it is replaced by cartopy which can be also installed from PyPI: pip install cartopy. If you really need basemap (e.g. to support some legacy code), you can install basemap directly from github: pip install --user git+https://github.com/matplotlib/basemap.git.

– hoefling
Nov 28 '18 at 0:13





pyproj is available on PyPI, so pip install pyproj will do. As for basemap, it is replaced by cartopy which can be also installed from PyPI: pip install cartopy. If you really need basemap (e.g. to support some legacy code), you can install basemap directly from github: pip install --user git+https://github.com/matplotlib/basemap.git.

– hoefling
Nov 28 '18 at 0:13













Thanks a lot. I've installed pyproj using pip install pyproj. But pip install cartopy is giving me an error: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-n71hEq/cartopy/.

– PDas
Nov 29 '18 at 19:05







Thanks a lot. I've installed pyproj using pip install pyproj. But pip install cartopy is giving me an error: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-n71hEq/cartopy/.

– PDas
Nov 29 '18 at 19:05















To add, I've installed all the dependencies required for cartopy. Except proj4. For proj4, I am getting pip install PROJ4 Collecting PROJ4 Could not find a version that satisfies the requirement PROJ4 (from versions: ) No matching distribution found for PROJ4

– PDas
Nov 29 '18 at 19:32





To add, I've installed all the dependencies required for cartopy. Except proj4. For proj4, I am getting pip install PROJ4 Collecting PROJ4 Could not find a version that satisfies the requirement PROJ4 (from versions: ) No matching distribution found for PROJ4

– PDas
Nov 29 '18 at 19:32












0






active

oldest

votes











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%2f53507044%2fpyproj-1-9-5-1-cp27-cp27m-win-amd64-whl-is-not-a-supported-wheel-on-this-platfor%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















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%2f53507044%2fpyproj-1-9-5-1-cp27-cp27m-win-amd64-whl-is-not-a-supported-wheel-on-this-platfor%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

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks