Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. musicinmybrain

    For log10(a) function

    I can't seem to reproduce this; it works well for me using scipy. Could you perhaps post some sample code (a small, simple, complete program including module imports) that produces the error? I wonder if it's something that's been fixed in the version of scipy that I'm using (0.5.2 on Python 2.5).
  2. musicinmybrain

    Python Serial port access

    Why does the character have to be printable? You can still store it in a string, right? >>> chr(3) '\x03'
  3. musicinmybrain

    For log10(a) function

    What version of Python are you using and what module(s) are you using to provide the array type and the log10 function?
  4. musicinmybrain

    Python Script reporting server / path not found

    I'm afraid it's pretty much impossible to debug this remotely, especially with no knowledge of the Python code or your setup.
  5. musicinmybrain

    New to Python

    First of all, you shouldn't be having to compile pygtk. You can just use "sudo apt-get install python-gtk2". In Ubuntu Feisty, at least, this will get you pygtk 2.10.4. If you really want to compile it, though, or you want that version and you're on too old a version of Ubuntu, fix the error...
  6. musicinmybrain

    scripts wont load

    I assume you're using Windows. Use Start --> Run... and type cmd in the box. Then navigate to the directory your script is in and type C:\Python24\python yourscript.py into the prompt. Replace C:\Python24 with the appropriate path to Python.
  7. musicinmybrain

    Re : Alternative way to load a DLL

    Here's a better link to SWIG
  8. musicinmybrain

    Re : Alternative way to load a DLL

    I guess there's also SWIG, but why don't you want to use ctypes?

Part and Inventory Search

Back
Top