Install AWS command line interface:
pip install awscli
TIP: Shell commands (including bash) can be confusing Type the command into this website to get a breakdown of all the elements of the command
Install: https://cygwin.com/setup-x86_64.exe
Make sure the installation has 'wget' as 'keep', not 'skip'
Unix is a family of operating systems, including linux, which is what the AWS computers use
Download git: https://git-scm.com/downloads
On linux/ubuntu (aws) install:
sudo apt-get install git
First timers get-going guide
git clone git@github.com/YOUR_USERNAME/learning_machine
cd FOLDER_NAME
cd ..
git remote add learning_machine git://github.com/breadley/learning_machine
git remote -v
git add "filename"
git add *
git commit -m 'insert tiny message about your changes'
git push origin master
github.com/YOUR_USERNAME/learning_machine
)pull request
and write a message about what you've been up toGo to folder 'learning_machine'
git add *
git commit -m 'message about commit'
git push origin master
pip install kaggle-cli
kg config -g -u breadley -p PASSWORD -c competition_name_from_kaggle_url_ending
kg download
kg submit submission1.csv -u USERNAME -p PASSWORD -c competition_name_from_kaggle_url_ending -m any_message
In python you can import a module from another document to simplify and de-clutter your code
import my_module
my_module
current_working_directory
..
, ..
and ..
etc.my_module.py
, place it in the same directory, or in the directories above it. Modules have a .py
extension
In [ ]: