Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 651 Bytes

install-dependencies-steps.md

File metadata and controls

18 lines (12 loc) · 651 Bytes

To install a package:

  1. Write the following command in the notebook cell:

    %pip install <package_name>
    

    For example, install the seaborn package to visualize statistics:

    %pip install seaborn
    

    You can use various options that the pip install command supports. See usage examples for this command.

  2. Run the cell. To do this, click Run.

    The package installation result is displayed under the cell.