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: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ $ python3 setup.py install
29
29
```
30
30
31
31
Dependencies will then be installed and VHostScan will be added to your path. If there is an issue regarding
32
-
running `python setup.py build_ext`, you will need to reinstall `numpy` using `pip uninstall numpy` and `pip install numpy==1.12.0`. This should resolve the issue as there are sometimes issues with numpy being installed through setup.py.
32
+
running `python3 setup.py build_ext`, you will need to reinstall `numpy` using `pip uninstall numpy` and `pip install numpy==1.12.0`. This should resolve the issue as there are sometimes issues with numpy being installed through setup.py.
33
33
34
34
# Usage
35
35
@@ -118,7 +118,7 @@ Or you can optionally run:
118
118
119
119
```bash
120
120
pip install -r test-requirements.txt
121
-
python setup.py test
121
+
python3 setup.py test
122
122
```
123
123
124
124
If you're thinking of adding a new feature to the project, consider also contributing with a couple of tests. A well-tested codebase is a sane codebase. :)
0 commit comments