pythonraspberry-piwifiraspberry-pi3

How would I run code to my Raspberry PI wirelessly?


I made a post similar to this however it was horribly worded and most of the information required to answer it was nowhere to be found - and it had reached essentially no one as a culmination of these factors.

Alright so, the issue.

The question itself.

Probably the serious problem.

An edit because I can't read rules.


Solution

  • You can use SCP to move the file to the Raspberry PI wirelessly

        scp [source files] [user]@[host]:[path]
    

    So in this case your source file(s) would be a python file, the user would be your username on your pi, the host would be the IP of the pi, and the path would be the location you want to save to on your pi.

    You should then be able to run your file through the terminal. Let me know if you have any questions.