Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Programming (http://www.chiefdelphi.com/forums/forumdisplay.php?f=51)
-   -   Networktables in PyDev (http://www.chiefdelphi.com/forums/showthread.php?t=154302)

abigailthefox 26-01-2017 19:40

Networktables in PyDev
 
I am trying to write a test program that will allow the RoboRIO to communicate with a Raspberry Pi 3 using networktables, specifically the pynetworktables from the RobotPy project. As a regular Java team/developer, I have Eclipse installed on my laptop, and I have added the PyDev plugin.

I have successfully installed Python, pip, pynetworktables, and PyDev. I have set up a PyDev project in Eclipse, and successfully constructed a src folder, a package, and modules. I successfully ran a "Hello world" program using one of these modules.

My problem is that when I try to import networktables using the example line shown in the RobotPy networktables documentation, it gives me an error,

"Unresolved import: NetworkTables"

I am pretty sure that I need to somehow add pynetworktables to my build path (or whatever the python equivalent of a build path is), but I am at a loss for how to actually do this. Right-clicking on the project doesn't offer me any 'build path' type options, and even if it did, my experience in python is minimal enough that I'm not exactly sure how I would find/add the pynetworktables. Has anyone done this/can anyone offer some direction here?

virtuald 27-01-2017 00:11

Re: Networktables in PyDev
 
There are two things you need to do.

pydev is a bit weird sometimes. The fun part is even if pydev says that there's an import error, it's not like Java -- executing your code might still work! Because python isn't a compiled language, pydev is only guessing based on the inputs it has.

abigailthefox 27-01-2017 13:52

Re: Networktables in PyDev
 
Quote:

Originally Posted by virtuald (Post 1636957)
  • Make sure that your source file is in the 'pythonpath' in the pydev settings for your project

I did figure it out! It turns out that while my interpreter was configured properly, the 'default' interpreter in PyDev was going to the 2.7 version of Python that shipped with my computer and not the 3.6 I manually added to my pythonpath. Oops:eek:


All times are GMT -5. The time now is 07:05.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi