Skip to main content

Learn Python with Visual studio code and GIT Bash for Data Science

Hello Techies,
  In this article i am going to introduce how you can code Python with Visual studio code and GIT Bash for Data Science.

So, Please follow bellow steps for this approach.

1. Download and install Python from : https://www.python.org/downloads/windows/
  ( Add python 3.7 * should be checked)

2. Install Git bash from given link : https://gitforwindows.org/
3. Download and install Visual studio code from :https://code.visualstudio.com/
4. Install Python Ext from VS Code

Integrate GIT BASH in VS CODE 

5. Open  https://code.visualstudio.com/docs/editor/integrated-terminal link and find bash code for VS Terminal which is given bellow.

// Git Bash
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe"
6.Now open VS Code and update setting with given code. 



7. Now press CTRL + ~ (tild) for open Terminal. 
  Now you can see GIT BASH has been integrated with VS Code now 

Important Commands

pwd - print working directory
ls - list of directory
clear - clear screen
cd D:// - chnage  directory
touch : for create file
rm : remove
rm -rf : remove folder
$ code hello.py
$ code new hello.py
$ mv hello.py helloTest.py - Rename file
$ cp helloTest.py  folder - Copy file to folder
$ python  helloTest.py - Run code


Comments

markson said…
The greater part we had always wanted are choose by our higher auxiliary imprints and a smidgen of cash. data science course in pune
ravali said…
I was blown out after viewing the article which you have shared over here. So I just wanted to express my opinion on Data Analytics, as this is best trending medium to promote or to circulate the updates, happenings, knowledge sharing.. Aspirants & professionals are keeping a close eye on Data analytics course in Mumbai
to equip it as their primary skill.
360digitmg said…

This knowledge.Excellently written article, if only all bloggers offered the same level of content as you, the internet would be a much better place. Please keep it up.

data science course

Popular posts from this blog

MVC Interview Questions

MVC Interview Questions What is MVC Application life cycle ? What is default route in MVC? What is Output Caching ? What are Route Constraints in MVC? What are the Benefits of Area in MVC? How do you implement Forms authentication in MVC? What are the Main Razor Syntax Rules? Define attribute based routing in MVC? What are HTML helpers in MVC? What does the MVC pattern define with 3 logical layers? What are the advantages of MVC? List the various return types of a controller action method. What are the types of filters? What are the Filters in MVC? What are the three segments for routing important? What is Route in MVC? what is the difference between ViewData and ViewBag? attribute based routing in MVC? What is GET and POST Actions Types? What is MVC (Model view controller)? What is Validation Summary in MVC? What’s new in the latest version of MVC? How to render html in Asp.net MVC view? Explain the concept of MVC Scaffolding? What is Bundling and Mini...

Azure Service Bus Vs Azure Web Job

MENU Home SUBSCRIBE Today, we will be talking about Azure service bus and how to use them with Webjobs. Azure Service Bus  is a messaging infrastructure that sits between applications allowing them to exchange messages for improved scale and resiliency. It offers the following capabilities: Queues: offers simple first in, first out guaranteed message delivery. When to use Azure Service Bus? Service Bus queues are a general-purpose technology that can be used for a wide variety of scenarios: Communication between web and worker roles in a multi-tier Azure application Communication between on-premises apps and Azure hosted apps in a hybrid solution Communication between components of a distributed application running on-premises in different organizations or departments of an organization There are also Topics and Relay capabiliteis but we will talk about them in the future. A figure that illustrates how Azure Service Bus works. There is a sender who send a mes...

Angular Step By Step Installation Process

# Angular Step By Step  Hello Techies,        In this post i am going to guide you to install Angular and create and run your first app. Please follow bellow steps.. Step 1 (Node NPM Installation) Node Js ( NPM)  should be installed on system. So for installation of Node Js follow bellow steps. Open  https://nodejs.org/en  .  Download stable Version (LTS) of Node js. After complete the installation open CMD and check the version. Step : 2 (Install Angular by NPM) Type " npm install -g @angular/cli "  2.  Select folder where you are going to create Angular Project.  3. Type ng new 'your app-name' EX:  ng new my-dream-app And Relax it will take some couple of minute to create app , because its downloading all the package from server by npm in you local system. Type : " cd my-dream-app " to select project which is created.  Now Type " ng serve " to run the project...