I want to run R Code on Windows IoT Core 10, is there any possibility for this?
I have tried to upload the R installation directory from my local PC to the Windows IoT core 10 device (Raspberry Pi 3)
Then from Power Shell I am executing following command Rscript.exe testscript.R but I get following error
Program 'Rscript.exe' failed to run: The operation completed successfully.
CategoryInfo : ResourceUnavailable: (:) [], ApplicationFailedException
FullyQualifiedErrorId : NativeCommandFailed
Is it possible at all to run R-Code on Windows IoT 10 core?
Any help is appreciated please.
EDIT :
I tried it from native command prompt on Windows IoT Core 10, and it gives error "The system cannot execute the specified program." So it looks like that it is not supported? Any suggestion/possibilities?
You need to recompile R completely for ARM or you can use Raspbian, its better than recompiling code anyway.
As written in this Blog there is just support for languages like:
C++
C#
JS
VB
Node.js and Python
Related
I'm trying to get a GUI Javafx application running on my Raspberry Pi 3 with touchscreen. Javafx is installed using Gluon, version armv6hf-sdk. When trying to run the program using this code:
sudo '/usr/bin/java' -jar /home/pi/NetBeansProjects//BarSystem/dist/BarSystem.jar
I get the following error:
Cannot open display
Exception in Application start method
java.lang.reflect.InvocationTargetException
It makes no difference if i try to run in remotely using NetBeans or directly on the Pi. The Pi is connected to the official 7" touchscreen and running Stretch Lite.
Java version is "1.8.0_201". I managed to get the application running on my Raspberry Pi 2 about a year ago, but are unable to achieve the same on my new pi. I already tried this https://raspberrypi.stackexchange.com/questions/76789/javafx-cannot-open-display-problem, but it didn't solve my problem.
I also tried to use lxterminal, but then receive a similar error:
(lxterminal:899): Gtk-WARNING **: cannot open display:
Thanks in advance!
so here's the question..
I'm developing a embedded linux program using qt 4.7..
I was able to cross compile and run withou success, but i'm trying to run thru my pc Qt (with remotely deploy) I was able to initialize and connect with ssh and i get "test successfull" when i make it with qt option.
I searched that i needed to include the target path in the project to solve "Cannot run: no command given"
The problem is, when i add:
target.files = EmbeddedSystem
target.path = /home/plg
INSTALLS += target
to the .pro, i get the error "error: SFTP initialization failed: The SFTP server finished unexpectedly with exit code 127."
Btw, i'm using mini6410.. Thanks!!
This error might comes from your ssh server/client on your embedded device.
Running the connexion test successfully doesn't mean that you can transfer files using SFTP.
If you are using OpenSSH then it is ok but Dropbear (for example) is a lightweight server/client that supports ssh but not SFTP.
I generated sdk in C ++ by sandbox.
I created the app using the steps described on this page, "http://kaaproject.github.io/kaa/docs/v0.10.0/Programming-guide/Your-first-Kaa-application/".
On Ubuntu I run the kaa-app file with the "./kaa-app" command on the terminal.
Question
How can I run this file on Windows?
Basically you need to compile the whole project on windows - with the windows compiler to be more specific.
Than you will get a windows executable (.exe).
I am trying to run asp.net core app on Raspberry pi 3 which runs Windows10 IoT .What I have done so far is:
Created a simple Web Api application in Asp.net core in local Windows 10 machine using visual studio.
removed type:platform from project.json file (for self contained deployment)
built and published the application using dotnet publish -c release -r win10-arm
copied the published files to UNC share folder in path
opened the port 5000 in pi powershell session netsh advfirewall firewall add rule name="DNX Web Server port" dir=in action=allow protocol=TCP localport=5000
typed 'C:\PROGRAMS\dnxpi\RasberryService.exe' in powershell session to pi
But it errors
Program 'RasberryService.exe' failed to run: The operation completed successfully.
+ CategoryInfo : ResourceUnavailable: (:) [], ApplicationFailedException
+ FullyQualifiedErrorId : NativeCommandFailed
Thanks in Advance!!
This github issue states that ARM is not supported ,but is in the road-map of dotnet core. Keeping the issue open for future updates and folks who find the same issue.
I started using mac for my application developments. So, I wanted to host my asp.net webservices in my mac machine itself. My mac version is 10.8.5.
Following these
http://www.worldgoneweb.com/2011/running-a-simple-asp-net-app-on-mac-os-x/
http://cushen.wordpress.com/2010/01/19/how-to-setting-up-mono-on-mac-os-x-part-one/
I installed the mono framework and executed the xsp command to start running the server. But my localhost was not up and running. So, I created a sample .cs file to check whether the installation was fine. But when I'm trying to run it through the terminal, I'm getting error - The type or namespace name `system' could not be found. Are you missing an assembly reference?
Am I missing something here ? Please help