Is it possible to use libraries (like pandas, numpy etc) of python on Sololearn editor? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is it possible to use libraries (like pandas, numpy etc) of python on Sololearn editor?

6th Feb 2022, 5:36 AM
Muhammad Sahil
Muhammad Sahil - avatar
2 Answers
+ 3
Yes pandas and numphy are pre-installed in Solo-Learn but some libraries you cannot.
6th Feb 2022, 5:43 AM
A͢J
A͢J - avatar
+ 3
Muhammad Sahil adding to what ravilnicki recommended, there is a way to suppress the warnings so that they do not clutter the output. Use the "quiet" switches -qqq in the pip command line and disable checking for the latest version of pip. os.system('pip install -qqq --disable-pip-version-check <package_name>')
6th Feb 2022, 3:54 PM
Brian
Brian - avatar