Max Rakitin

Results 30 comments of Max Rakitin

@kklmn, @yxrmz, I saw a new release 1.4.0. Would you be able to consider my contribution to be included in a future release? Is there any blocker here you'd like...

With `entry_points` one does not have to know the path to the scripts, and typing `xrt` would be enough to start the script. In the present approach a user will...

Thanks, I did not use `scripts` in the past, and it's reasonable the script is accessible via a directory in `$PATH`. However, when I use it directly via `xrtQookStart.py`, I...

OK, the problem is that the shebang is not present in your scripts. That's why directly calling `xrtQookStart.py` was treated as a bash script, not the Python code. Adding `#!/usr/bin/env...

a5212e5 addresses the issue with the missing shebang strings with the interpreter. https://en.wikipedia.org/wiki/Shebang_(Unix) has it as an example.

I found https://python-packaging.readthedocs.io/en/latest/command-line-scripts.html#the-scripts-keyword-argument useful. From that tutorial, the `scripts` kwarg is designed to support general scripts, while `entry_points` are for Python functions. As `xrtQookStart.py` is a Python code, it is...

> > while entry_points are for Python functions > > I think this speaks _against_ using `entry_points` as we do not export functions but rather scripts as full modules. Right,...

Hi @kklmn, sorry for the late reply. No progress on that. I got stuck with conda-provided packages for PyQt5, not sure how to resolve it. pip packages seem to work...

Actually, the problem appeared to be related to the missing `libEGL.so.1` lib: ```py ImportError: libEGL.so.1: cannot open shared object file: No such file or directory ``` See the details at...

I think this problem is resolved. Pending on your reply about the conda-forge.