Skip to content

nyuvis/dataLabeling

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installing Instruction

1. Setup python virtual enviroment

Install pyenv.

brew install pyenv'

Edit the .bash_profile

vim .bash_profile
Add the following code into the file:

export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"

Then run:
source .bash_profile

Create a virtual python enviroment

pyenv install 3.8.5
pyenv virtualenv 3.8.5 dataLabeling

Go into the virtual enviroment

pyenv activate dataLabeling

2. Clone the github repository:

https://github.com/basketduck/dataLabeling/

3. Install python dependencies

Change the working path to the cloned local repository, where includes requirements.txt.
Run the following code:
pip uninstall -ry requirements.txt
pip install -r requirements.txt

4. Run the server:

python manage.py runserver

5. Open the site:

http://127.0.0.1:8000/engine/dotVis

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published