无法执行pip安装--在可编辑模式下没有DEP

无法执行pip安装--在可编辑模式下没有DEP,pip,Pip,如何在和中安装包含pip的软件包 我尝试了--无dep和--无依赖项: $ pip install -e --no-deps . ERROR: --no-deps is not a valid editable requirement. It should either be a path to a local project or a VCS URL (beginning with svn+, git+, hg+, or bzr+). $ pip install -e --no-depe

如何在和中安装包含pip的软件包

我尝试了
--无dep
--无依赖项

$ pip install -e --no-deps .
ERROR: --no-deps is not a valid editable requirement. It should 
either be a path to a local project or a VCS URL (beginning with svn+, 
git+, hg+, or bzr+).

$ pip install -e --no-dependencies .
ERROR: --no-dependencies is not a valid editable requirement. It should 
either be a path to a local project or a VCS URL (beginning with svn+, 
git+, hg+, or bzr+).
但我总是会出错

省略
-e
--没有dep
起作用:

$ pip install -e .
$ pip install --no-deps .

pip
在这里有点古怪。在
-e
选项之前,必须有
--no deps
选项:

pip install --no-deps -e .
文件