Conda Install Numpy: Package Installation
Conda Install Numpy: Package Installation
Using these packages is easy. All we need to do is install the package and import it
wherever required.
Any package can be installed by directly writing the following command in the Anaconda
Prompt:
conda install numpy
The name of package can be replaced at the end of the statement.
Once you begin the installation, after a bit of processing, the prompt would ask if you wish to
proceed for the installation or not:
Press Y to continue with the installation. Within a few minutes, the packages will be installed
and would be ready to use.
Meaning: Import numpy in the file to use its functionalities in the file to which it has been
imported.
Meaning: import only one functionality (array) from the whole numpy package. While this
gives faster processing, it limits the package’s usability.
Meaning: Import only one functionality (array) from the whole numpy package and refer to it
as arr wherever it is used.
A lot of other combinations can also be explored while importing packages like importing
multiple functionalities of a package in a single statement, etc.
91