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: pip install --upgrade git submodule update --recursive does not exist
Type: Stage: resolved
Components: Installation Versions: Python 3.7
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: aysedogan, docs@python, pgacv2, xtreak
Priority: normal Keywords:

Created on 2019-10-23 05:01 by aysedogan, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (2)
msg355208 - (view) Author: Ayse (aysedogan) Date: 2019-10-23 05:01
Hi, 

I was trying to apply a github code, for that I need to get this first:git clone --recursive https://github.com/rbgirshick/py-faster-rcnn.git  but it when I run this it is saying this:
PS C:\Users\Ayse Dogan> python -m pip install --user --upgrade git clone --recursive https://github.com/rbgirshick/py-faste
r-rcnn.git

Usage:
  C:\ProgramData\Anaconda3\python.exe -m pip install [options] <requirement specifier> [package-index-options] ...
  C:\ProgramData\Anaconda3\python.exe -m pip install [options] -r <requirements file> [package-index-options] ...
  C:\ProgramData\Anaconda3\python.exe -m pip install [options] [-e] <vcs project url> ...
  C:\ProgramData\Anaconda3\python.exe -m pip install [options] [-e] <local project path> ...
  C:\ProgramData\Anaconda3\python.exe -m pip install [options] <archive url/path> ...

no such option: --recursive

As I see from Issue35135 this was happening for some other packages. 
Could you please help me about it?

Sincerely, 
Ayse
msg355209 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2019-10-23 06:21
Thanks for the report. As noted in the linked issue this tracker is for issues related to CPython. pip has it's own issue tracker in GitHub : https://github.com/pypa/pip . I am closing it as third party.

Possibly related : https://github.com/pypa/pip/issues/289
History
Date User Action Args
2022-04-11 14:59:22adminsetgithub: 82743
2019-10-23 06:21:25xtreaksetstatus: open -> closed
resolution: third party
messages: + msg355209

stage: resolved
2019-10-23 05:01:21aysedogancreate