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
It is highly recommended to use Python virtual environment for running TabPy.
48
48
Check the [Running TabPy in Python Virtual Environment](tabpy-virtualenv.md) page
49
49
for more details.
50
+
51
+
## Starting a Local TabPy Project
52
+
53
+
To create a version of TabPy that incorporates locally-made changes, use pip to create a package from your local TabPy project and install it within that directory (preferably a virtual environment):
54
+
55
+
```sh
56
+
pip install -e .
57
+
```
58
+
59
+
Then start TabPy just like it was mentioned earlier
Copy file name to clipboardExpand all lines: docs/tabpy-virtualenv.md
+18-3Lines changed: 18 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,10 +33,25 @@ To run TabPy in Python virtual environment follow the steps:
33
33
```
34
34
35
35
4. Run TabPy:
36
+
1. Default TabPy
36
37
37
-
```sh
38
-
tabpy
39
-
```
38
+
```sh
39
+
tabpy
40
+
```
41
+
42
+
2. Local TabPy
43
+
44
+
To create a version of TabPy that incorporates locally-made changes, use pip to create a package from your local TabPy project and install it within that directory:
45
+
46
+
```sh
47
+
pip install -e .
48
+
```
49
+
50
+
Then start TabPy just like it was mentioned earlier
0 commit comments