-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated the installation from source section to use an editable packa…
…ge install rather than an install from setup.py #110
- Loading branch information
Showing
1 changed file
with
4 additions
and
6 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 |
---|---|---|
|
@@ -18,16 +18,14 @@ $ pip install cvdata | |
$ pip install -e git+https://github.com/tensorflow/models.git#egg=object_detection\&subdirectory=research | ||
``` | ||
|
||
##### From Source | ||
##### From source | ||
This package can be installed into the active Python environment as source from | ||
its git repository. We'll first clone/download from GitHub, install the dependencies | ||
specified in `requirements.txt`, and finally install the package into the active | ||
Python environment: | ||
its git repository. We'll first clone/download from GitHub and then install the | ||
package into the active Python environment: | ||
```bash | ||
$ git clone [email protected]:monocongo/cvdata.git | ||
$ cd cvdata | ||
$ pip install -r requirements.txt | ||
$ python setup.py install | ||
$ pip install -e . | ||
``` | ||
|
||
## OpenImages | ||
|