tuschla
tuschla
Having the same issue here. What python dependencies are not installed automatically by the script?
Fixed this by changing to the directory where the script was in. I hope this can be helpful.
> Was the issue that you were not in the same directory as the script? Yes.
Hey, I'm having both installed and getting the same error.
I modified the script by removing the if condition so I'm now being shown the following error. ```FileNotFoundError: [Errno 2] No such file or directory: 'result/0.png'```
>As i can see in other thread when you changed directory to the script this error disapper or am I wrong? No, I got this error after "fixing" the other...
Concerning the second error: this is how the `testdir` folder looks like on my machine (and probably should look like). ``` testdir ├── 0 │ └── 0.tgs.json ├── 1 │ ...
https://github.com/teynav/signalApngSticker/blob/ac29a301d9c48585a111ed40f20851be60cea42d/scripts_linux/script_v3/core-hybrid#L65-L69 When doing `gunzip -c 0.tgs > ./testdir/0/0.tgs.json` by hand I also get the same (first) error. I'm attaching the file below. I can open this file (and oll the...
[0.tgs.zip](https://github.com/teynav/signalApngSticker/files/8167447/0.tgs.zip) GIthub wouldn't let me upload tgs files so I had to zip it.
When debugging it becomes clear why it can't open the json. The path joining (see below) is not working and is joining paths like this `testdir/./5/./5.tgs.json` when they should actually...