I install Python version 2.7.9 for Windows 7, python is setup under the folder C:\Python27 and the subfolder Scripts has well the file easy_install.exe, then from the command line I run the command "easy_install --upgrade androidviewclient" as mentioned on the AndroidViewClient wiki page. The package is unstalled under the folder C:\Python27\Lib\site-packages\androidviewclient-10.0.0-py2.7.egg But I don't see any folder \examples or \src I follow the wiki page by testing with the command "python check_import.py" but I don't find this file anywhere on my pc. I am just wondering if AndroidViewClient is setup properly, do I miss anything in the setup, or should I download something else to test ? Thanks
Asked
Active
Viewed 751 times
2 Answers
1
I had the same issue, follow this tutorial. For your case you need to start on the step [8.Download zip file from GitHub].

ahmed_khan_89
- 2,755
- 26
- 49
0
I think you have properly installed AndroidViewClient/culebra using easy_install
.
/examples
and /src
are present in the source distribution which you can clone or download from github as a ZIP file. Thanks for pointing this out, I think it should be mentioned in the documentation.

Diego Torres Milano
- 65,697
- 9
- 111
- 134
-
thanks for your help, I download the zip file and extract to the folder C:\AndroidViewClient-master and finally pass the test as mentioned in the wiki page. I am new to Android development, so in my opinion, it is a little bit confusing, it is like there are 2 possible versions of AndroidViewClient, one from pygi and one from git, and the best way to install is via easy_install because of flexibility and future updates, download the zip and create a folder C:\AndroidViewClient-master for tests. For dependencies I think I should use the scripts culebra and dump from easy_install, right ? – tuan dat nguyen Feb 22 '15 at 05:42
-
Using everything from `easy_install` is what you should do. The source code is only needed if you want to contribute changes or fixes to the project. – Diego Torres Milano Feb 22 '15 at 06:13