From 3f5573e7f96125dde4240a5348a9ae3cca589920 Mon Sep 17 00:00:00 2001 From: gauravichandak <106547269+gauravichandak@users.noreply.github.com> Date: Fri, 3 Jun 2022 23:57:36 +0530 Subject: [PATCH 1/3] Add files via upload --- Anaconda.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Anaconda.md diff --git a/Anaconda.md b/Anaconda.md new file mode 100644 index 0000000..9793e30 --- /dev/null +++ b/Anaconda.md @@ -0,0 +1,20 @@ +# Installing Anaconda +1. go to anaconda website and choose the desired python version you want to install anaconda with (recommended version-3.x). +2. after installing, run the .exe file and start the installation wizard. +3. click 'next' and 'i agree' after reading the lisence agreement. +4. choose install location and click 'next'. +5. 'Advanced Installation Options' dialogue box will appear select the first option if you want to use anaconda directly in your command prompt, if not do not select the first option(you have to use anaconda from anaconda prompt in your start menu). +6. you can either skip or accept the vscode installation as per your preference. +7. click on install. click on finish + +## Your anaconda is installed!!! + +after this you can open anaconda prompt and check your python and conda versions, as follows: + +- to check python version, type: + python --version + +- to check conda version, type: + conda info + +### now you are all set and you install and have access to all the amazing libraries and tools!!! From 56e83921fd462f82359c2d9cc9a91c389549d2d3 Mon Sep 17 00:00:00 2001 From: gauravichandak <106547269+gauravichandak@users.noreply.github.com> Date: Sat, 4 Jun 2022 00:32:58 +0530 Subject: [PATCH 2/3] Add files via upload --- Jupyter Notebook.ipynb | 55 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 Jupyter Notebook.ipynb diff --git a/Jupyter Notebook.ipynb b/Jupyter Notebook.ipynb new file mode 100644 index 0000000..c922061 --- /dev/null +++ b/Jupyter Notebook.ipynb @@ -0,0 +1,55 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "57f04022", + "metadata": {}, + "source": [ + "# Jupyter Notebook\n", + "\n", + "## Overview\n", + "Jupyter Notebook is a widely used platform for communicating and performing interactive computing. Not just bounding to the mathematical part but you can insert images and text documents as well. Notebook is an open-source web application which enables you to create and share interactive documents with live code , elaborate and explainatory text, visuaJupyterlizations, equations, data representations etc.\n", + "It is widely used for data cleaning and transformation, statistical modelling, machine learning, data science and data analytics and much more.\n", + "It allows the user to construct the content in a mixture of Markdown, an extended version of Markdown called MyST, Maths & Equations using MathJax, Jupyter Notebooks, reStructuredText, the output of running Jupyter Notebooks at build time. Multiple output formats can be produced (currently single files, multipage HTML web pages and PDF files)\n", + "!()\n", + "\n", + "## Installation\n", + "- The best method is to install the anaconda package as it cames pre-installed with the anacoda package.\n", + "- The other method is by installing latest version of python and write the following command in the powershell or command prompt:\n", + " pip install jupyter\n", + "\n", + "### Your jupyter notebook is installed!!!\n", + "\n", + "to launch jupyter notebook just type : Jupyter Notebook ,in your command prompt.\n", + "\n", + "### Jupyter Notebook is launched \n", + "\n", + "now we can see an entire menu with a lot of options we can create a notebook or upload files.\n", + "run live code or write markdown files.\n", + "set the appearance of the notebook according to our preference.\n", + "setup keyboard shortcuts for our convenience and many more.\n" + ] + } + ], + "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 +} From c3825d9165e3b81e617e9229a01b3018a377a4aa Mon Sep 17 00:00:00 2001 From: gauravichandak <106547269+gauravichandak@users.noreply.github.com> Date: Sat, 4 Jun 2022 00:37:18 +0530 Subject: [PATCH 3/3] Revert "Gauravi_210389_Jupyter Notebook" --- Anaconda.md | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Anaconda.md diff --git a/Anaconda.md b/Anaconda.md deleted file mode 100644 index 9793e30..0000000 --- a/Anaconda.md +++ /dev/null @@ -1,20 +0,0 @@ -# Installing Anaconda -1. go to anaconda website and choose the desired python version you want to install anaconda with (recommended version-3.x). -2. after installing, run the .exe file and start the installation wizard. -3. click 'next' and 'i agree' after reading the lisence agreement. -4. choose install location and click 'next'. -5. 'Advanced Installation Options' dialogue box will appear select the first option if you want to use anaconda directly in your command prompt, if not do not select the first option(you have to use anaconda from anaconda prompt in your start menu). -6. you can either skip or accept the vscode installation as per your preference. -7. click on install. click on finish - -## Your anaconda is installed!!! - -after this you can open anaconda prompt and check your python and conda versions, as follows: - -- to check python version, type: - python --version - -- to check conda version, type: - conda info - -### now you are all set and you install and have access to all the amazing libraries and tools!!!