Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pan #1506

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@

.DS_Store
.idea/

/venv/*

/.vscode/
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
<h1 align="center">
Гайд для установки
</h1>
Разрабы не смогли нормально написать что необходимо для запуска программы и какие зависимости необходимо подгрузить, так что придётся это делать мне.

Для начала нужен питон с официального сайта (у меня работает на 3.11.9).

Клонируем репозиторий:
```
git clone https://github.com/DemidNeuroLab/NeuroLabel

cd ./NeuroLabel
```

Далее рекомендую создать vevn:
```
python -m venv venv

.\venv\Scripts\activate
```

Далее устанавливаем зависимости:
```
pip install -r requirements.txt

pip install -r requirements-dev.txt
```

Для запуска приложения нужно запустить файл start.py.
```
python start.py
```

# Далее ридми от разрабов:

<h1 align="center">
<img src="labelme/icons/icon.png"><br/>labelme
</h1>
Expand Down
Loading