Skip to main content
Seasoned ⭐️⭐️
June 18, 2024
Solved

Installing Dependencies in Jupyter Notebook

  • June 18, 2024
  • 3 replies
  • 85 views

Can someone please suggest, how we can add additional python libraries in CDF jupyter notebook?

Best answer by Dilini Fernando

Hi @Ankit Kothawade,

To install Python packages, execute the following command: 

%pip install <package name>

3 replies

Dilini Fernando
Expert ⭐️⭐️⭐️⭐️
Expert ⭐️⭐️⭐️⭐️
June 18, 2024

Hi @Ankit Kothawade,

To install Python packages, execute the following command: 

%pip install <package name>

Seasoned ⭐️⭐️
June 18, 2024

Thank You @Dilini Fernando , this worked.

iAnkit
Seasoned ⭐️⭐️
June 19, 2024

Hello @Dilini Fernando , I am facing issue while installing libraries like - Tensorflow. 
After searching a bit, I found a weblink - Basic Usage — micropip 0.6.0 documentation (pyodide.org)

However, this method is still not working at my end.

iAnkit