title | description | author | keywords | math |
---|---|---|---|---|
Introduction |
First Python lecture |
Qusai Al Shidi |
space-weather,space,python |
mathjax |
Qusai Al Shidi | [email protected]
- Download and install Anaconda.
- Run Anaconda Navigator.
(some of these are installed by default)
Go into the Anaconda command prompt and install the missing packages.
- Spyder
conda install -c conda-forge bash
orconda install -c msys2 m2-base
on Windows.conda install -c conda-forge pip
conda install -c conda-forge git
- GitHub is a website that hosts
git
repositories. git
is a version controlling software for your source code.- Every repository is independent and decentralized, conflicts must be resolved by you.
- Go to GitHub.com and register for an account.
- Forking makes a copy of the repository for your own account.
- Do this when making contributions to open source project to merge back one day!
- Every git repository is independent but they can be cloned!
- Good science is done more easily with good organization. Find a good folder in your computer to clone.
git config --global user.name '<full name>'
git config --global user.email '<email>'
- To create directories type
mkdir <directory_name>
- To move into a directory type
cd <directory_name>
- Most terminals allow tab-completion! Use that to your advantage.
- Finally when you are in the folder you want to use for your work
git clone <clone_link>