Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex DataSphere
  • Getting started
    • All guides
      • Connecting to JupyterLab from a local IDE
      • Selecting computing resources
      • Checking GPU load
      • Getting a notebook ID
      • Installing packages
      • Notebook code snippets
      • Clearing notebook cell outputs
      • Working with Git
      • Setting up template-based notebook creation
    • Migrating a workflow to a new version
  • Terraform reference
  • Audit Trails events
  • Access management
  • Pricing policy
  • Public materials
  • Release notes

In this article:

  • Getting started
  • Installing a package
  1. Step-by-step guides
  2. DataSphere Notebook
  3. Installing packages

Installing dependencies

Written by
Yandex Cloud
Updated at August 15, 2025
  • Getting started
  • Installing a package

Popular packages for data analysis and machine learning are pre-installed and ready for use. You can find a list of these packages here.

To install missing packages, use pip.

Getting startedGetting started

Open the DataSphere project:

  1. Select the project in your community or on the DataSphere home page in the Recent projects tab.

  2. Click Open project in JupyterLab and wait for the loading to complete.
  3. Open the notebook tab.

Installing a packageInstalling a package

To install a package:

  1. Enter the following command in a notebook cell:

    %pip install <package_name>
    

    For example, install the seaborn package to visualize statistics:

    %pip install seaborn
    

    You can use various options the pip install command supports. For examples of using this command, follow this link.

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

    The package installation result will show up under the cell.

Note

To refresh the list of installed packages, restart the kernel. To do this, click Kernel → Restart Kernel in the top panel of the project window.

If you encounter problems when installing dependencies, use the recommendations provided in Solving problems with dependencies in Yandex DataSphere.

Was the article helpful?

Previous
Getting a notebook ID
Next
Notebook code snippets
© 2025 Direct Cursus Technology L.L.C.