Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Readme_Intro_Updates #79

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions 1_Introduction/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,11 @@ Machine learning is done where designing and programming explicit algorithms can
2. Download R Studio IDE from this [link](https://rstudio.com/products/rstudio/download/#download).
* RStudio automatically configures R programming language already installed on the machine.
3. Open RStudio and enter Hello World code to check successful installation.

## Opening a Jupyter Notebook using Anaconda Prompt
1. Open *Anaconda Prompt* on your system.
2. The current directory in which your project will move will be 'C:\Users\username'. To change the directory or working folder, ender the command: cd Folder_Location. Say E:\Machine Learning\100DaysofMLCode is the folder, You want to work on. The command for the same will be
cd E:\Machine Learning\100DaysofMLCode. (cd means change directory)
3. When you'll execute the command, the directory will be changed. If not, enter the command: Local_Disk: (it will be E: in the example case).
4. Your working directory will be changed by now, enter the command 'Jupyter Notebook'. You will now be directed to your Web Browser with your Jupyter Notebook opened.
5. Click on the New option in the Upper Right Corner and you can write your code. Begin with print('Hello! This is my First Jupyter Notebook. Thanks to 100DaysofMLCode.')