Skip to content

Week1-Mohika-210623 #8

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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions Installing Anaconda on Windows.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Installing Anaconda on Windows
1. To install Anaconda on Windows, go to https://www.anaconda.com/products/distribution#windows and download Anaconda for Windows.
2. Open the Set Up prompt on your device.
3. Set Up Anaconda and install it at the desired location on your device.
4. You are done with the installation.

42 changes: 42 additions & 0 deletions Jupyter Notebook Basics.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "2ea297b6",
"metadata": {},
"source": [
"Basics of Jupyter Notebook.\n",
"Jupyter Notebook is a web based interactive computing platform.\n",
"It contains both code and rich text elements making it ideal for analysis description.\n",
"Its two main components are the kernels and a dashboard.\n",
"A kernel is a language specific program that executes the user code.\n",
"The dashboard shows you the notebooks that you have made and manages the kernels.\n",
"You can run Jupyter Notebook with the Anaconda Python Distribution.\n",
"To get started, run the command - jupyter notebook\n",
"This opens the application in the web browser on the address localhost:8888\n",
"You can now explore Jupyter Notebook and discover all the features. You can make a new notebook by clicking on New in the Files tab"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.12"
}
},
"nbformat": 4,
"nbformat_minor": 5
}