Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install cmake-common via python pip




cmake-common - Various utilities to help develop C++/CMake projects, it belongs to Classifiers:

- Development Status :: 4 - Beta
- Intended Audience :: Developers
- Programming Language :: C
- Programming Language :: C++
- Topic :: Software Development
- Topic :: Software Development :: Build Tools

When you know about this project and you want to new install cmake-common to support your project or you get trouble as ModuleNotFoundError: No module named "cmake-common" or ImportError: cannot import name "cmake-common" in your project, let follow this tutorial to install cmake-common



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_cmake-common_env

- Active the virtual environment

test_cmake-common_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_cmake-common_env

- Active the virtual environment

source test_cmake-common_env/bin/active


Step 2: OK, now, let flow below content to start the installation cmake-common

To install cmake-common on Windows(CMD):

py -m pip install cmake-common

To install cmake-common on Unix/macOs:

pip install cmake-common


Step 3: If you want to install a specific cmake-common version, add ==<cmake-common version> to the end command line

Example:

pip install cmake-common==0.1


Please see the version list below table:

VersionReleased dateCommand
cmake-common 3.42022-01-05T12:49:21Windows:

py -m pip install cmake-common==3.4

Unix/macOs:

pip install cmake-common==3.4

cmake-common 3.32021-12-15T12:21:11Windows:

py -m pip install cmake-common==3.3

Unix/macOs:

pip install cmake-common==3.3

cmake-common 3.22021-05-15T00:44:42Windows:

py -m pip install cmake-common==3.2

Unix/macOs:

pip install cmake-common==3.2

cmake-common 3.12021-05-08T23:49:24Windows:

py -m pip install cmake-common==3.1

Unix/macOs:

pip install cmake-common==3.1

cmake-common 3.02021-05-08T13:10:42Windows:

py -m pip install cmake-common==3.0

Unix/macOs:

pip install cmake-common==3.0

cmake-common 2.42021-05-08T00:59:25Windows:

py -m pip install cmake-common==2.4

Unix/macOs:

pip install cmake-common==2.4

cmake-common 2.32021-05-07T09:02:01Windows:

py -m pip install cmake-common==2.3

Unix/macOs:

pip install cmake-common==2.3

cmake-common 2.22021-05-03T11:43:42Windows:

py -m pip install cmake-common==2.2

Unix/macOs:

pip install cmake-common==2.2

cmake-common 2.1.12021-04-28T14:41:46Windows:

py -m pip install cmake-common==2.1.1

Unix/macOs:

pip install cmake-common==2.1.1

cmake-common 2.12021-04-24T15:03:26Windows:

py -m pip install cmake-common==2.1

Unix/macOs:

pip install cmake-common==2.1

cmake-common 2.02021-04-18T19:25:24Windows:

py -m pip install cmake-common==2.0

Unix/macOs:

pip install cmake-common==2.0

cmake-common 1.02021-04-14T00:19:56Windows:

py -m pip install cmake-common==1.0

Unix/macOs:

pip install cmake-common==1.0

cmake-common 0.12021-04-13T16:05:19Windows:

py -m pip install cmake-common==0.1

Unix/macOs:

pip install cmake-common==0.1


Step 4: Otherwise, you can install cmake-common from local archives:

Download the distribution file from cmake_common-3.4.tar.gz or the specific cmake-common version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_cmake-common_downloaded_file>

On Unix/macOs:

pip install <path_to_cmake-common_downloaded_file>


List distribution:

- cmake_common-0.1-py3-none-any.whl
- cmake_common-0.1.tar.gz
- cmake_common-1.0-py3-none-any.whl (python version >=3.6)
- cmake_common-1.0.tar.gz (python version >=3.6)
- cmake_common-2.0-py3-none-any.whl (python version >=3.6)
- cmake_common-2.0.tar.gz (python version >=3.6)
- cmake_common-2.1-py3-none-any.whl (python version >=3.6)
- cmake_common-2.1.tar.gz (python version >=3.6)
- cmake_common-2.1.1-py3-none-any.whl (python version >=3.6)
- cmake_common-2.1.1.tar.gz (python version >=3.6)
- cmake_common-2.2-py3-none-any.whl (python version >=3.6)
- cmake_common-2.2.tar.gz (python version >=3.6)
- cmake_common-2.3-py3-none-any.whl (python version >=3.6)
- cmake_common-2.3.tar.gz (python version >=3.6)
- cmake_common-2.4-py3-none-any.whl (python version >=3.6)
- cmake_common-2.4.tar.gz (python version >=3.6)
- cmake_common-3.0-py3-none-any.whl (python version >=3.6)
- cmake_common-3.0.tar.gz (python version >=3.6)
- cmake_common-3.1-py3-none-any.whl (python version >=3.6)
- cmake_common-3.1.tar.gz (python version >=3.6)
- cmake_common-3.2-py3-none-any.whl (python version >=3.6)
- cmake_common-3.2.tar.gz (python version >=3.6)
- cmake_common-3.3-py3-none-any.whl (python version >=3.6)
- cmake_common-3.3.tar.gz (python version >=3.6)
- cmake_common-3.4-py3-none-any.whl (python version >=3.6)
- cmake_common-3.4.tar.gz (python version >=3.6)


Project link:

- Homepage
- Bug Tracker