python - Using pip with pip-installed mercurial -


so installed mercurial with:

pip install mercurial 

now, when doing:

pip install -r requirements.txt   

i get:

> cannot find command 'hg' 

is there way make pip use c:\python27\scripts\hg.bat hg command? can run typing hg, assumed pip also.

i did try using:

mklink c:\windows\system32\hg.bat c:\python27\scripts\hg.bat   

and:

mklink c:\windows\system32\hg.exe c:\python27\scripts\hg.bat   

neither affect.

i have looked elsewhere on google, , every answer concerning hg assumes you've either used apt-get or installer mercurial installed.

if there way use mercurial available pip, i'm thinking initial setup of windows development environment go quicker.

i using windows 7 (32-bit python 2.7.10).

thanks in advance help.


Comments

Popular posts from this blog

yii2 - Yii 2 Running a Cron in the basic template -

asp.net - 'System.Web.HttpContext' does not contain a definition for 'GetOwinContext' Mystery -

mercurial graft feature, can it copy? -