On May 4, 10:30 am, michel bellis <fill.i...@9online.fr> wrote:

> Could you recall me which is the python command that allows to know
> from which directory python is loaded ? I would like to verify that
> there no another python installed.

I think you have a duplicate and incorrect pygr package in your import
path. Do a

import pygr
print pygr.__file__

that will tell you where it is coming from, you could also do a:

import sys

for p in sys.path:
    print p

this will list all the paths that the system attempts to import from,
then look in those directories and remove the incorrect pygr
installations, then reinstall correctly.

Istvan


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pygr-dev" group.
To post to this group, send email to pygr-dev@googlegroups.com
To unsubscribe from this group, send email to 
pygr-dev+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/pygr-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to