Run a shell file from a github project - raspberry-pi

need some help here.
Im new to linux and all the stuff.
My main problem is to run a specific project from Github(https://puffycv.readthedocs.io/en/latest/Installation.html)
I'm useing a raspberry pi 4 with raspbain buster on it.
Dont know what i am doing wrog here.
Would be awesome if somebody could test the project on a similar system and gide me trough thx. :D

Okay the main point iam stuck with is when is have to run the ./enumerate_cams.sh file.
if i open it Raspbain is showing me a message to execute the file.
but if i click on that noting happens.
I ve also try to click run in terminal but theres also nothing happend thx.

Related

pgAdmin 4 v3.0 and v3.1 doesn't load (crashes) on Windows 10

I tried to google issue, but I couldn't really find any help or solution that would work. It is trying to load - loading box appear, but app doesn't appear after that.
There is no log in "%APPDATA%\pgAdmin\pgadmin4.log" file or any error. There is no process after it crashes. Version v2 works properly.
I'll provide any info, you need. I am kinda out of ideas how to log / fix this.
Have you tried running it as Administrator?
If not I would suggest try it once, I don't know the exact reason but sometimes it fails to load on Windows.
I faced the same issue, Here are the steps I followed,
1) Right click on pgAdmin4 icon
2) Select 'Run as administrator' option
3) Click Yes on confirmation dialog and check if pgAdmin4 starts properly.
If the above steps do not solve your problem then try reaching the developers via the mailing list.
https://www.pgadmin.org/support/list/

Eclipse running previous programs

I have a problem running programs on eclipse. It's not running any new program.It's stuck on few last projects I previously ran. Overtime I'm trying to run a new program it runs another program that I'm done working on. I don't know what's causing it. I tried everything in my knowledge but nothing seems to be useful. If anyone can help me, I would very much appreciate it.
Don't click on Run button in eclipse it sometime run the cached program i.e., already runned programmedIt is not a good practicebeing a experienced eclipse user I can advise you to try to right click on your program after saving it then click Run As option and further option(optoin vary like in JSE program it shows java Application and in JEE program it shows server option)hope you will try this and it can solve your problem

Has anyone seen this error while running TestComplete?

I have been having problems working with TestComplete. What I have are:
TestComplete Version 10.0.531.7, 64 bits
Windows 7 Enterprise, Service Pack 1
Whenever I start TestComplete, it gives me this error. Please see screenshot below:
If I choose to
Don't terminate the application AND
Don't send
TestComplete allows me to proceed but after I click on "Edit" button then "Next", it tells me that the specified data source can not be found. Please see screenshot below:
I am not really sure if those two errors are related, has anyone seen this kind of error before?
PS. I have tried reinstalling Oracle data base 11.2.0, but it does not help.
Many thanks
I found the problem:
I needed to install Oracle ODAC101040.exe
Now the problem has been solved.

Issue running golang Hello World in eclipse

Alright, so just a disclaimer I suspect this question will be a duplicate of another question however I'm not even sure what to search for.
I have never used Eclipse or Golang before and am attempting to get a basic hello world application to work.
I have installed the goclipse plugin, created a new go package and go command source file. From what I have read to run a project in Eclipse you right click the package, select Run as then set the run configurations. The problem occurs when I attempt to select the go package as none shows up and if I leave it blank it throws a 'Go package not found' exception.
Thank you for any help you can provide.
EDIT: Upon the answers advice I have decided to go with the basic command line, however a friend did also recommend LiteIDE. I will "assume" tmichels answer is correct in regards to getting Go to work within eclipse.
If you don't use the GOPATH environment variable and you don't put your project folder under $GOPATH/src the compiler won't find it. As I see it goclipse lets you skip the GOPATH entirely but in this case you have to put your code under the src directory that you can see in the Project Explorer. See the related section of the goclipe documentation.
Although I think you make your life harder by using a full-fetched IDE for go development. Just use the command line tools. And it has the added benefit that you will actually understand what's going on (IDEs hide this from you).
So for building you can use go build or go install. The latter will copy the binary to your $GOPATH/bin directory. For running test just call go test or go test path/to/package. There is a hidden gem in the go tool: when you are working with multiple packages in the same directory you can use go test ./... to test all of them at once. This also works with other go commands.

Google App Engine Eclipse Launch Local Host Multiple App Conflict?

I have two GAE projects created through pydev in eclipse 4.2 (windows 7) and the first one I had no issues running the localhost:8080 but when I created a second project, I duplicated the Run Configuration for local run adn just changed the project name to the new one.
However- when I run that config the inital HelloWorld project shows up[ in my browser, I tried completely removing the first project, but then it just ocmplains it cant fint app.yaml in the old directory (because the old directory isnt where it was).
So clearly I'm missing some setting in the launch procedure where it sets the root path.
The run config is a PyDeb Google App Run, main module points to
C:\program files (x86)\google\google_appengine\dev_appserver.py
And the arguments are
${project_loc}\src
Everything else is on the default settings.
Any help would be greatly appreciated as pushing to Google (which works fine for both) for every little debug iteration is driving me a bit crazy.
Thanks!
*EDIT: Forgot to mention I have already tried to delete all runconfigs and remake.
Have you tried Run as : PyDev Google App Engine Run, to create a new runconfig?
Turns out I'm just a bit silly. In eclipse, I wasn't properly turning off (not sure on the correct term there) the LocalHost for the first project before starting the second. To fix, I needed to go Into eclipses console window, and select "display selected console" and choose the project I wanted to stop and hit the stop all button. Then it runs fine.
Hope this helps someone in the future, that is as determined as me that "It can't be my fault".
Cheers.