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
Then you simply start DPULSE using `poetry run python dpulse.py`
65
+
65
66
### Second way (recommended on Windows systems, without using Poetry)
66
67
67
68
Simply download zip archive from assets in releases bookmark, just right here:
@@ -70,18 +71,39 @@ Simply download zip archive from assets in releases bookmark, just right here:
70
71
71
72
Then you just unpack the archive, open terminal in DPULSE root folder and use `pip install -r requirements.txt` command to install requirements. Then type `python dpulse.py` in terminal, and that's where program starts.
72
73
73
-
You also can use this way with some different approach using this set of commands:
74
+
You also can use this installation way with some different approach using this set of commands:
DPULSE has two pre-written installation scripts, both for Windows (installer.bat) and for Linux (installer.sh). You can use them to clone repository and install dependencies or only for dependencies installation. Keep in mind that installer.bat (Windows installer) requires installed Git to clone repository.
85
+
86
+
### Windows installer usage
87
+
88
+
You can start installer.bat from terminal by typing `./installer.bat` in terminal. Then you choose menu item which you want to start.
89
+
90
+
If you have problems with starting installer.bat, you should try to start it in admin terminal.
91
+
92
+
### Linux installer usage
93
+
94
+
To start installer.sh in Linux you should follow these steps in your terminal:
95
+
96
+
```
97
+
sudo chmod +x installer.sh
98
+
sudo bash installer.sh
99
+
```
100
+
Then you choose menu item which you want to start.
101
+
102
+
If you have problems with starting installer.bat, you should try to use `dos2unix installer.sh` or `sed -i 's/\r//' installer.sh` commands.
103
+
82
104
# DPULSE demos
83
105
84
-
### You can start DPULSE and see the main menu on the screen using `python dpulse.py` command in DPULSE root folder. Don't forget to install all requirements before starting DPULSE
106
+
### You can start DPULSE and see the main menu on the screen using one of the recommended commands in DPULSE root folder. Don't forget to install all requirements before starting DPULSE
0 commit comments