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
This revision includes:
* Minor comment fixes on Particle/SphSystemData2 and 3
* Adding setKernelRadius function to SphSystemData2 and 3
* Adding more Python bindings to ParticleSystemData2 and 3
Copy file name to clipboardExpand all lines: INSTALL.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,7 +124,15 @@ Then, build `INSTALL` project under `jet.sln`. This will install the header file
124
124
To install the Python SDK, `pyjet`, run the following command from the project root directory (where `setup.py` lives):
125
125
126
126
```
127
-
pip install .
127
+
pip install -U .
128
+
```
129
+
130
+
> You can also use `virtualenv` to isolate the SDK installation. Check out [the virtualenv documentation](https://virtualenv.pypa.io/en/stable/) for more details.
131
+
132
+
To run the test/example scripts, install other Python dependencies as follows:
133
+
134
+
```
135
+
pip install -r requirements.txt
128
136
```
129
137
130
138
Once installed, try running the unit test to see if the module is installed correctly:
0 commit comments