Make KaggleAux available through pip
This package should be make available through pip so that its easier for users to download and install. https://packaging.python.org/en/latest/distributing.html
I should probably open a new ticket but I'm having issues installing on my mac. I'm using anaconda distribution -- python 2.7
__mudy@169-231-89-11:~/programming/pythhon_udacityDataScience$__ pip install -r requirements.txt
Could not open requirements file: [Errno 2] No such file or directory: 'requirements.txt'
__mudy@169-231-89-11:~/programming/pythhon_udacityDataScience$__ sudo pip install -r requirements.txt
Password:
The directory '/Users/mudy/Library/Logs/pip' or its parent directory is not owned by the current user and the debug log has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/Users/mudy/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/Users/mudy/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Could not open requirements file: [Errno 2] No such file or directory: 'requirements.txt'
__mudy@169-231-89-11:~/programming/pythhon_udacityDataScience$__ sudo -H pip install -r requirements.txt
Could not open requirements file: [Errno 2] No such file or directory: 'requirements.txt'
@modqhx that seems more like a local permissions issue on your machine than an issue with the project. Are you sure you're in the right directory?
Yep! I'm in the right directory.. It seems I'm using the system's pip instead of using anaconda's pip.. If I do "which pip" I get -- /usr/local/bin/pip Any idea on how I can use Anaconda site-packages to install this? http://dolinked.com/questions/1744520/anaconda-not-finding-my-packages-installed-with-pip
@modqhx Honestly, I'm not sure. I recommend opening a stackoverflow question of your own or an issue with anaconda team.