-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add cvat cli to datumaro project export (#870)
- Loading branch information
1 parent
37589e4
commit 0bab60b
Showing
4 changed files
with
62 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Quick start | ||
|
||
``` bash | ||
# optionally make a virtualenv | ||
python -m virtualenv .venv | ||
. .venv/bin/activate | ||
|
||
# install dependencies | ||
sed -r "s/^(.*)#.*$/\1/g" datumaro/requirements.txt | xargs -n 1 -L 1 pip install | ||
pip install -r cvat/utils/cli/requirements.txt | ||
|
||
# set up environment | ||
PYTHONPATH=':' | ||
export PYTHONPATH | ||
ln -s $PWD/datumaro/datum.py ./datum | ||
chmod a+x datum | ||
|
||
# use Datumaro | ||
./datum --help | ||
``` | ||
|
||
Check Datumaro [QUICKSTART.md](datumaro/docs/quickstart.md) for further info. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters