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
1) Prerequisites: install the following python packages:
90
93
`python -m ensurepip --upgrade`
91
94
`python -m pip install setuptools packaging`
95
+
The remaining packages will be installed within the build.
92
96
93
97
2) At a command prompt, `cd` to the root directory of this repository.
94
98
95
99
3) Run: `python setup.py install --user --force`
96
100
97
101
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.
98
102
99
-
* If you are using `virtualenv` you do not need the --user or --force options.
103
+
* If you are using `virtualenv` you may not need the --user or --force options.
100
104
* If you are using Anaconda Python you must run within the `Anaconda Prompt` on Windows. Do not use --user or --force options.
101
105
102
106
* If you run into problems due to caching of arguments in CMake, delete the
0 commit comments