Open
Description
I've heard from a couple users that they tried to pip install cog
expecting to end up with a cog
CLI, but of course that didn't work. We should update our docs to clarify what's going on here.
Here's why:
cog CLI
The cog
CLI is written in Golang and is distributed via binaries GitHub Releases (and Homebrew for macOS users):
cog build ...
cog predict ...
cog push ...
cog Python package
The cog
package on PyPi is a different thing. It's the Python library you import into your model code when writing a Predictor:
from cog import BasePredictor, Path, Input
Related issues: