0

What does this command do?

pip install -e ".[gpu]"

I've seen some documentation on the -e option, but I'm confused by the text afterwards.

user3433489
  • 911
  • 2
  • 10
  • 24

1 Answers1

1

The [gpu] is the name of the requirements group from setup.py. take a look at this for more information.

pip install -e is how setuptools dependencies are handled via pip

sajjad rezaei
  • 945
  • 1
  • 10
  • 23