Skip to content

Commit 12bc737

Browse files
authored
Poetry impacted Seeder Users Guide
We need to highlight some changes that came from poetry in 2.4.2
1 parent 36be67f commit 12bc737

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/guides/seeder-user-guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ nameserver 8.8.8.8
7171
nameserver 8.8.4.4
7272
```
7373

74-
Once you have completed freeing up port 53, you will then need to allow the python executable in your venv to have access to port 53:
74+
Once you have completed freeing up port 53, you will then need to allow the python executable in your venv to have access to port 53. From an activated venv run `whereis python` and use the result in the command below:
7575

7676
```bash
77-
sudo setcap CAP_NET_BIND_SERVICE=+eip $(readlink -f /home/{{ user }}/chia-blockchain/venv/bin/python)
77+
sudo setcap CAP_NET_BIND_SERVICE=+eip $(readlink -f /home/{{ user }}/chia-blockchain/.venv/bin/python)
7878
```
7979

80-
Note that anytime you change the python executable by rerunning `sh install.sh` or when `apt` upgrades python, you will need to re-run this command.
80+
Note that anytime you change the python executable by rerunning `sh install.sh` or when `apt` upgrades python, you will need to re-run this command. Also, the exact path to python has changed as of version 2.4.3 and that new usual default is what is specified above.
8181

8282
## Configuration
8383

0 commit comments

Comments
 (0)