How to upgrade python module:
in Linux:
In terminal type
$pip3 install --upgrade packageName
## Exa1:
## 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
type :
How to install a selective version of python module:
In Linux:
type :
$ pip3 install packagename==version
## Exa1:
$ pip3 inatall scipy==1.4.1
type :
In Windows:
type :
$pip install packagename==version
## Exa1:
## Exa1: