这个命令是做什么的:pip install -e <some text>
what does this command do: pip install -e <some text>
这个命令有什么作用?
pip install -e ".[gpu]"
我看过一些关于 -e 选项的文档,但后面的文字让我感到困惑。
[gpu]
是来自 setup.py
的需求组的名称。查看 this 了解更多信息。
pip install -e 是通过 pip
处理 setuptools 依赖项的方式
这个命令有什么作用?
pip install -e ".[gpu]"
我看过一些关于 -e 选项的文档,但后面的文字让我感到困惑。
[gpu]
是来自 setup.py
的需求组的名称。查看 this 了解更多信息。
pip install -e 是通过 pip