-
Notifications
You must be signed in to change notification settings - Fork 0
Description
My steps on windows:
Download zip and extract
Open promt of choice (if powershell use semicolon instead of &&)
Run cd <extracted folder path> && py -m venv .
Click on activate.bat in the generated Scripts folder
Run cd <extracted folder path>/Scripts/ && pip install pysciter
Click on the install.bat in extracted folder
Run cd <extracted folder path>/Scripts/ && python ../example.py
Oneliner:
Run cd <extracted folder path> && py -m venv . && cd Scripts && start "" /W activate.bat && pip install pysciter && start "" /D .. /W install.bat && python ../example.py
Error:
Traceback (most recent call last):
File "C:\Users\xxx\Desktop\pysciter-example-master\example.py", line 3, in
import sciter
File "C:\Users\xxx\Desktop\pysciter-example-master\lib\site-packages\sciter_init_.py", line 22, in
from .value import value as Value
File "C:\Users\xxx\Desktop\pysciter-example-master\lib\site-packages\sciter\value.py", line 14, in
_api = sciter.SciterAPI()
File "C:\Users\xxx\Desktop\pysciter-example-master\lib\site-packages\sciter\capi\scapi.py", line 583, in SciterAPI
raise ImportError(SCITER_LOAD_ERROR + "\n" + "\n".join(errors))
ImportError: sciter.dll was not found in PATH.
Please verify that Sciter SDK is installed and its binaries (SDK/bin, bin.osx or bin.gtk) are available in the path.
'sciter': Could not find module 'sciter' (or one of its dependencies). Try using the full path with constructor syntax.
'sciter64.dll': Could not find module 'sciter64.dll' (or one of its dependencies). Try using the full path with constructor syntax.