Showing posts with label 2.What is python. Show all posts
Showing posts with label 2.What is python. Show all posts

Friday, July 17, 2020

How To Update/Upgrade A Python Package

How to upgrade python module:



in Linux:



  In terminal type           
$pip3 install --upgrade packageName  
       
   ## Exa1:
 $pip3 inatall --upgrade numpy
       
Note:  sign already come by default in terminal.


In Windows :

     

In powershell or command prompt
 type:
 $:pip install --upgrade packagename

 ## Exa1:
 $pip inatall --upgrade numpy


How to install a selective version of python module:


 In Linux:

                     
 type :       
$ pip3 install packagename==version     

## Exa1: 
pip3 inatall scipy==1.4.1

 

 In Windows:

                     
 type :
$pip install packagename==version

## Exa1: 

Sunday, January 26, 2020

What is Python ?


2.What is Python ?


           python is a object oriented programming language. it is high-level and general-purpose programming language.it was created by Guido van Rossum and first released in 1991.for more details click here


💪Python uses for 

  • Web development
  • Software development (GUI Application)
  • Artificial Intelligence
  • Machine Learning 
  • Data manipulation.


😊Why we choose python ?

  • python script syntax is written in easy readable code (as English word mean)
  • python uses new line to complete command but other language uses character as semicolon or brackets.
  • python is open source and not required to pay any cost to download setup and for uses it.
  • python works on different platforms as windows, Linux, mac, raspberry pi, etc. 


👉👉If yet, you not installed python . visit our first article on installation process of python. click here