Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how do run setup.py in async_dropbox? #1

Closed
andyevil opened this issue May 30, 2012 · 2 comments
Closed

how do run setup.py in async_dropbox? #1

andyevil opened this issue May 30, 2012 · 2 comments

Comments

@andyevil
Copy link

i download file zip and copy to folder htdocs. but, i run IDLE(Python GUI) error:

Traceback (most recent call last):
File "C:\Python27\dropbox\setup.py", line 6, in
from setuptools import setup, find_packages
ImportError: No module named setuptools

Thanks for any suggest, I'm just beginner:(

@bdarnell
Copy link
Owner

A) It looks like you're trying to run setup.py from the dropbox package, not async_dropbox, so you're in the wrong place.

B) The message means you need to install setuptools first: http://pypi.python.org/pypi/setuptools (there's also a newer package called "distribute" that replaces setuptools; it will work too)

C) Once you have setuptools installed, you may want to use easy_install (which comes with setuptools) rather than running setup.py manually.

D) I don't think it's a good idea to unzip packages like this in the c:\python27 folder (or in htdocs for that matter). You should probably make a new directory to work in.

@andyevil
Copy link
Author

andyevil commented Jun 8, 2012

Thank you! i setup suscess

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants