Closed GoogleCodeExporter closed 9 years ago
Why don't you try checking out the latest code from the repository and see if
that installs correctly? The 2.0.0 version is fairly behind compared to the
repository; I need to cut a new distributable at some point. Let me know if you
would like me to zip something up for you.
Also, I've never tried installing the package from within the Python
installation root. It probably shouldn't make a difference, but you could try
extracting the package somewhere other than C:/Python27 and see if that helps.
Original comment by pmalms...@gmail.com
on 20 Jun 2012 at 1:00
I downloaded Tortoise SVN and downloaded the latest repository of your xbee
package in my C:\ directory. And C:\Python27 is in my PATH variable.
I went to my C:\xbee directory (where the repo is located) and ran:
python setup.py install
And it seemed like it installed correctly. Then I ran the example program
receive_samples.py and it returned this error:
Traceback (most recent call last):
File "C:\xbee\examples\receive_samples.py", line 13, in <module>
from xbee import XBee
File "C:\Python27\lib\site-packages\xbee\__init__.py", line 8, in <module>
from xbee.impl import XBee
ImportError: No module named impl
How come it doesn't see the impl module?
Original comment by ronthecon
on 20 Jun 2012 at 2:45
I still think you are getting a version that is out of date. Have you tried
following the instructions on this page
(http://code.google.com/p/python-xbee/source/checkout) using Mercurial?
Original comment by pmalms...@gmail.com
on 20 Jun 2012 at 2:49
I installed Mercurial and used the hg command on this website to get the latest
version. I ran the same install command and everything seemed to be compiling
fine.
I ran the receive_samples.py and this was my output:
Traceback (most recent call last):
File "C:\xbee\examples\receive_samples.py", line 13, in <module>
from xbee import XBee
File "C:\Python27\lib\site-packages\xbee\__init__.py", line 8, in <module>
from xbee.ieee import XBee
ImportError: No module named ieee
Could this error be caused by multiple Python installations? I have python 2.4,
2.7, and 3.2. I'm trying to get the latest 2.7 to work so I can use the
wxPython with pySerial and python-xbee.
Original comment by ronthecon
on 20 Jun 2012 at 3:39
Does the following path exist? "C:\Python27\Lib\site-packages\xbee\ieee.py".
If that's not there, try re-installing from scratch. In the site-packages
directory for 2.7:
C:\Python27\Lib\site-packages
Remove the folder called xbee and the file called XBee-2.0.0-py2.7.egg-info.
Then re-run the install script explicitly with Python 2.7 from the place you
checked out the source code with Mercurial:
C:\xbee>C:\Python27\python.exe setup.py install
You should see a bunch of lines printed to the console indicating that files
are being copied and byte-compiled if the installation worked properly.
You can test the installation by explicitly starting Python 2.7:
C:\Python27\python.exe
and attempting:
import xbee
Original comment by pmalms...@gmail.com
on 20 Jun 2012 at 3:56
Perfect. That new installation worked then I just had to copy the digimesh.py
file over to C:\python-xbee\xbee\ and change __init__.py to include:
from xbee.digimesh import DigiMesh
And everything worked. Thanks again!
Original comment by ronthecon
on 20 Jun 2012 at 4:38
My pleasure; I'm glad to hear that that took care of your problem. Your prior
installation must have been slightly messed up somehow.
Original comment by pmalms...@gmail.com
on 21 Jun 2012 at 12:36
Original issue reported on code.google.com by
ronthecon
on 19 Jun 2012 at 6:43