You’ll need to be set up so that you can write and run code on your own device.
You’ll need a couple of things:
Optional: The internet runs on Linux so if you can install Linux that would be useful. If you earn certain bursaries with us then we’ll hook you up with a Linux computer. There are a few options here if you want to set yourself up:
You’ll need to run your code using Python. Ideally you should be using a modern version of Python. Python2.7 is commonly referred to as “legacy Python”. In tech, “legacy” is a dirty word.
Optional: You can also start practicing to use Anaconda and use its Integrated Development Environment, but all the the pre-bootcamp learning resources can be done on any Python-friendly IDE like Visual studio above.
Follow latest installation instruction from the official Anaconda website - https://www.anaconda.com/download/
Optional: Install Node. Node gives you a way to run JavaScript code without having to use a web page.
In a command line you can then do things like node my_script.js
. This can be quite convenient.
If you don’t have a computer you can use then you can use your phone. Here’s how to get set up on an Android.
You’ll need to install 2 things:
Have some videos:
Termux takes a little bit of setup before you can use it for all the stuff we need. Also, it might seem really weird and confusing at first. If this stuff kicks your a\$\$ then rather come back to this page when you feel ready. But you do need to get comfortable with this stuff before bootcamp.
When you open termux up for the first time please do the following:
pkg update
pkg upgrade
pkg install git
git config --global user.email "your@email.whatevs"
git config --global user.name "your name"
termux-setup-storage
cd storage/shared
# now you can cd into your folders and interact with git
Note:
Y
then enter.You can use ACode to write python code too. Just be sure to save your files with the .py
extension.
To run your python files, you need to use Termux.
First install python like so:
pkg install python
Then you can open a python interpreter at any point with the command python
.
You can also run your python scripts like so:
cd /path/to/wherever/you/stored/your/goodies
python my_script.py
Try it out and remember to ask for help if you get stuck
Eish, we haven’t managed to find anything good here. If you have any suggestions please bring them up.
Do your best to find a solution on your own