Data Analysis with Pandas & Python
March 26, 2023
1. Getting Started?? With Pandas.
Install Anaconda
Fuel up your anaconda ( shoftware bundle of python)
Installed? How would you know? Find this-
To update Anaconda to the latest version:
conda update conda
Create Environment
conda info --envs [asking condas for information about environments. environment is the flag and that is why followed by two dash --]
the asteric sign is saying that currently active environment is the base.
If we install any packages, it will be installed in the base environment.
conda create --name pandas_playground
To activate we need one last command
conda activate pandas_playground
conda install pandas jupyter bottleneck numexpr matplotlib