Преглед изворни кода

add bin/dnet/python-venv to .gitignore and standadize naming in dnet README

lunar-mining пре 2 година
родитељ
комит
964e3bcc9d
2 измењених фајлова са 4 додато и 3 уклоњено
  1. 1 0
      .gitignore
  2. 3 3
      bin/dnet/README.md

+ 1 - 0
.gitignore

@@ -42,6 +42,7 @@ python-venv
 /darkwikid
 /zktool
 /riscv-bins
+/bin/dnet/python-venv
 
 # tags, ctags, rusty-tags
 TAGS

+ 3 - 3
bin/dnet/README.md

@@ -19,19 +19,19 @@ Depending on your setup you may need to install a virtual environment
 for Python. Do so as follows:
 
 ```shell
-% python -m venv env
+% python -m venv python-venv
 ```
 
 Then install the requirements:
 
 ```shell
-% env/bin/pip install -r requirements.txt
+% python-venv/bin/pip install -r requirements.txt
 ```
 
 Run dnet:
 
 ```shell
-% env/bin/python main.py
+% python-venv/bin/python main.py
 ```
 
 ### Without a venv