> > rm -Rf $PYTHON_PATH/site-packages/PyPlucker
>
> Okay, I tried to do this. As far as I can tell I have done this.
> However, I continue to get the error:
> Traceback (most recent call last):
> File "./install-plucker", line 140, in ?
> os.symlink(os.path.join(MOD_DIR, "PyPlucker", "Spider.py"),
>os.path.join(BIN_DIR, "plucker-build"))
> OSError: [Errno 17] File exists
>
> Thus, I need help determining what specific path is being used.
> --
> Tcl'2002 Sept 16, 2002, Vancouver, BC http://www.tcl.tk/community/tcl2002/
> Larry W. Virden <mailto:[EMAIL PROTECTED]> <URL: http://www.purl.org/NET/lvirden/>
> Even if explicitly stated to the contrary, nothing in this posting should
> be construed as representing my employer's opinions.
> -><-
Well, in POSIX terms, the first argument
("$MOD_DIR/PyPlucker/Spider.py") is the real file, and the second
("$BIN_DIR/plucker-build") is the symlink. So the only possible
interpretation is that "$BIN_DIR/plucker-build" already exists.
Bill