This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: How to install cmake?
Type: behavior Stage: resolved
Components: Versions: Python 3.5
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: Dingo64, r.david.murray
Priority: normal Keywords:

Created on 2017-06-05 12:30 by Dingo64, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg295182 - (view) Author: Dingo64 (Dingo64) Date: 2017-06-05 12:30
When I try to use pip to install something it says it cannot because it doesn't make cmake. When I try to install cmake:

C:\Python35>pip3 install cmake
Collecting cmake
  Downloading cmake-0.7.0.tar.gz (29.2MB)
    100% |################################| 29.2MB 14kB/s
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 20, in <module>
      File "C:\Users\7\AppData\Local\Temp\pip-build-kudn0eog\cmake\setup.py", li
ne 7, in <module>
        from skbuild import setup
    ImportError: No module named 'skbuild'

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\7\AppDat
a\Local\Temp\pip-build-kudn0eog\cmake
You are using pip version 7.1.2, however version 9.0.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' comm
and.

C:\Python35>pip3 install skbuild
Collecting skbuild
  Could not find a version that satisfies the requirement skbuild (from versions
: )
No matching distribution found for skbuild
msg295183 - (view) Author: Dingo64 (Dingo64) Date: 2017-06-05 12:34
I did:
python -m pip install --upgrade pip

and then
pip3 install cmake
went OK.

So I would suggest to change notices like "You are using pip version 7.1.2, however version 9.0.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' comm
and." into errors or warning so they seem more like something user has to do rather than something he might consider doing.
msg295186 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2017-06-05 12:40
The pip issue tracker is at https://github.com/pypa/pip/issues if you want to suggest this, but I doubt it will be accepted.  The action *is* something optional.
History
Date User Action Args
2022-04-11 14:58:47adminsetgithub: 74758
2017-06-05 12:40:43r.david.murraysetnosy: + r.david.murray
messages: + msg295186
resolution: fixed -> third party

type: compile error -> behavior
2017-06-05 12:34:09Dingo64setstatus: open -> closed
resolution: fixed
messages: + msg295183

stage: resolved
2017-06-05 12:30:59Dingo64create