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
+32-3Lines changed: 32 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,11 +25,40 @@ The library requires *Python 3.7+*.
25
25
26
26
## Installation and Usage
27
27
28
-
Make sure you are using *Python 3.7+* for all below!
28
+
Make sure you are using *Python 3.6+* for all below!
29
29
30
-
`python3 setup.py install`
30
+
1. First, creat a virtual environment and activate the virtual environment.
31
31
32
-
After installation, we highly recommend you go through our [Tutorial](https://github.com/GemsLab/StrucEmbeddingLibrary/blob/master/Tutorial.ipynb) to see how SEMB library works.
32
+
```bash
33
+
python3 -m venv <VENV_NAME>
34
+
source<VENV_NAME>/bin/activate
35
+
```
36
+
37
+
2. Change directory to the `StrucEmbeddingLibrary` and install the dependencies
After installation, we highly recommend you go through our [Tutorial](https://github.com/GemsLab/StrucEmbeddingLibrary/blob/master/Tutorial.ipynb) to see how SEMB library works.
52
+
53
+
4. To enable using the jupyter notebook, do the following,
0 commit comments