Can somebody clarify what happens after the bolded virtualenv venv command. The venv \ Scripts \ pip install -r requirements.txt
returns the following error message:
'venv' is not recognized as an internal or external command,
operable program or batch file.
--- below is the full instruction from desper:
Install Virtualenv by running pip install virtualenv
Download the sent and unzip to the directory C: \ sentinel (you can specify another, but for example here it will be this one)
We execute in the directory C: \ sentinel
virtualenv venv
venv \ Scripts \ pip install -r requirements.txt <--- executing command this shows the result in the venv error message
Editing sentinel.conf by specifying the path to monacoCoin.conf in the monacoCoin_conf parameter.
Create a C: \ sentinel \ sentinel.bat file with the following content:
@echo off
set HOME =.
cd C: \ sentinel
C: \ sentinel \ venv \ Scripts \ python C: \ sentinel \ bin \ sentinel.py
Create a C: \ sentinel \ sentinel.vbs file with the following content:
Install WshShell = CreateObject ("WScript.Shell")
WshShell.Run chr (34) & "C: \ sentinel \ sentinel.bat" & Chr (34), 0
Install WshShell = Nothing
This intermediate vbs-script is needed in order to not open the console window when executing through the task scheduler.
We add the action C: \ sentinel \ sentinel.vbs to the task scheduler (Control Panel -> Administration -> Task Scheduler -> Create Task ...)
Trigger indicate "Daily", repeat the task 1 min.
Have you tried the official sentinel instructions at
https://github.com/monacocoin-net/sentinel ?
I ask as it has a simpler set of instructions to install sentinel and get it working.