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

How to install setuptools_hg via python pip




setuptools_hg - Setuptools/distribute plugin for finding files under Mercurial version control., it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Framework :: Setuptools Plugin
- License :: OSI Approved :: GNU General Public License (GPL)
- Programming Language :: Python :: 2.4
- Programming Language :: Python :: 2.5
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 3.2
- Topic :: Software Development :: Version Control

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



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_setuptools_hg_env

- Active the virtual environment

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

- Active the virtual environment

source test_setuptools_hg_env/bin/active


Step 2: OK, now, let flow below content to start the installation setuptools_hg

To install setuptools_hg on Windows(CMD):

py -m pip install setuptools_hg

To install setuptools_hg on Unix/macOs:

pip install setuptools_hg


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

Example:

pip install setuptools_hg==0.1


Please see the version list below table:

VersionReleased dateCommand
setuptools_hg 0.42012-02-02T14:45:44Windows:

py -m pip install setuptools_hg==0.4

Unix/macOs:

pip install setuptools_hg==0.4

setuptools_hg 0.32011-11-14T22:41:38Windows:

py -m pip install setuptools_hg==0.3

Unix/macOs:

pip install setuptools_hg==0.3

setuptools_hg 0.2.22011-11-03T09:59:02Windows:

py -m pip install setuptools_hg==0.2.2

Unix/macOs:

pip install setuptools_hg==0.2.2

setuptools_hg 0.2.12011-06-27T15:17:22Windows:

py -m pip install setuptools_hg==0.2.1

Unix/macOs:

pip install setuptools_hg==0.2.1

setuptools_hg 0.22009-06-20T12:51:08Windows:

py -m pip install setuptools_hg==0.2

Unix/macOs:

pip install setuptools_hg==0.2

setuptools_hg 0.1.52009-06-12T23:48:46Windows:

py -m pip install setuptools_hg==0.1.5

Unix/macOs:

pip install setuptools_hg==0.1.5

setuptools_hg 0.1.42009-03-25T10:35:45Windows:

py -m pip install setuptools_hg==0.1.4

Unix/macOs:

pip install setuptools_hg==0.1.4

setuptools_hg 0.1.32009-03-12T18:32:56Windows:

py -m pip install setuptools_hg==0.1.3

Unix/macOs:

pip install setuptools_hg==0.1.3

setuptools_hg 0.1.22009-02-05T01:15:03Windows:

py -m pip install setuptools_hg==0.1.2

Unix/macOs:

pip install setuptools_hg==0.1.2

setuptools_hg 0.1.12009-02-04T11:48:28Windows:

py -m pip install setuptools_hg==0.1.1

Unix/macOs:

pip install setuptools_hg==0.1.1

setuptools_hg 0.12009-02-04T03:20:56Windows:

py -m pip install setuptools_hg==0.1

Unix/macOs:

pip install setuptools_hg==0.1


Step 4: Otherwise, you can install setuptools_hg from local archives:

Download the distribution file from setuptools_hg-0.4.tar.gz or the specific setuptools_hg version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_setuptools_hg_downloaded_file>

On Unix/macOs:

pip install <path_to_setuptools_hg_downloaded_file>


List distribution:


Project link:

- Homepage