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
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,9 +103,11 @@ Note: Windows MSVC 2019 runs as C\+\+17 by default so boost is not needed. On l
103
103
104
104
#### Simple Python build (any platform)
105
105
106
-
1)At a command prompt, `cd` to the root directory of this repository.
106
+
1)Prerequisites: install the following python packages: `pip install setuptools packaging`
107
107
108
-
2) Run: `python setup.py install --user --force`
108
+
2) At a command prompt, `cd` to the root directory of this repository.
109
+
110
+
3) Run: `python setup.py install --user --force`
109
111
110
112
This will build and install a release version of htm.core. The `--user` option prevents the system installed site-packages folder from being changed and avoids the need for admin privileges. The `--force` option forces the package to be replaced if it already exists from a previous build. Alternatively you can type `pip uninstall htm.core` to remove a previous package before performing a build.
111
113
@@ -115,7 +117,7 @@ Note: Windows MSVC 2019 runs as C\+\+17 by default so boost is not needed. On l
115
117
* If you run into problems due to caching of arguments in CMake, delete the
116
118
folder `<path-to-repo>/build` and try again. This may be only an issue when you restart a build after a failure.
117
119
118
-
3) After that completes you are ready to import the library:
120
+
4) After that completes you are ready to import the library:
0 commit comments