On Fri, Aug 27, 2010 at 3:31 PM, nobosh <bhellm...@gmail.com> wrote:
> I ran python setup.py install to install an emailauth app as Im
> working to create an auth that is email/password based.
>
> http://github.com/redvasily/django-emailauth
>
> I'm still working to get it installed and working, and would like to
> uninstall the module because when I create a project and go to create
> an app emailauth I get the following error:
>
> "Error: 'emailauth' conflicts with the name of an existing Python
> module and cannot be used as an app name. Please try another name."
>
> I'd like to uninstall emailauth so I can copy the directory into my
> project folder and hopefully find a way to use it as an app.
>
> Does that sound right? How do you uninstall an app?

What I usually do to remove a Python module is something like:
>>> import emailauth
>>> print emailauth.__file__

That will give me the path to that package or module, and I just
delete the corresponding file or folder.

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

Reply via email to