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
Copy file name to clipboardExpand all lines: tools/accuracy_checker/README.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,14 +92,13 @@ You can use any of them or several at a time. For correct work, Accuracy Checker
92
92
If all prerequisite are installed, then you are ready to install **Accuracy Checker**:
93
93
94
94
```bash
95
-
python3 setup.py install
95
+
python3 -m pip install.
96
96
```
97
97
98
-
Accuracy Checker is a modular tool and have some task-specific dependencies, all specific required modules can be found in `requirements.in` file.
99
-
Instead of the standard installation, you can install only the core part of the tool without additional dependencies and manage them by yourself using the following command:
100
-
98
+
Accuracy Checker is a modular tool and have some task-specific dependencies, all specific required modules can be found in `requirements-extra.in` file.
99
+
Standard installation procedure includes only basic part, in order to obtain extra modules you can execute following command:
101
100
```bash
102
-
python setup.py install_core
101
+
python3 -m pip install .[extra]
103
102
```
104
103
105
104
#### Installation Troubleshooting
@@ -108,7 +107,7 @@ python setup.py install_core
108
107
If you get a directory/file not found error, try manually removing the previous tool version from your environment or install the tool using following command in Accuracy Checker directory instead of setup.py install:
0 commit comments