How do I install Python packages in Google's Colab?

前端 未结 5 2039
南方客
南方客 2020-12-22 19:23

In a project, I have e.g. two different packages, How can I use the setup.py to install these two packages in the Google\'s Colab, so that I can import the packages?

5条回答
  •  渐次进展
    2020-12-22 19:37

    lets say you want to install scipy,

    Here is the code to install it

    !pip install scipy
    

提交回复
热议问题