You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Install [Visual Studio Code](https://code.visualstudio.com/docs/setup/linux#_debian-and-ubuntu-based-distributions)
@@ -45,23 +45,28 @@ Password: ***
45
45
Password (again): ***
46
46
```
47
47
48
-
- Install UI packages and start UI debug server:
48
+
- Install npm packages for UI and start UI debug server (run the following command from CVAT root directory):
49
49
```sh
50
-
cd cvat-core&&npm install
51
-
cd../cvat-canvas&& npm install
52
-
cd ../cvat-ui&& npm install
53
-
npm start
50
+
npm install&&\
51
+
cd cvat-core&& npm install&& \
52
+
cd ../cvat-canvas&& npm install&& \
53
+
cd ../cvat-ui && npm install &&npm start
54
54
```
55
55
56
-
-Run Visual Studio Code from the virtual environment
56
+
-Open new terminal (Ctrl + Shift + T), run Visual Studio Code from the virtual environment
57
57
58
58
```sh
59
-
code .
59
+
cd .. &&source .env/bin/activate && code
60
60
```
61
61
62
-
- Inside Visual Studio Code install [Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) and [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) extensions
62
+
- Install followig vscode extensions:
63
+
-[Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome)
0 commit comments