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

前端 未结 5 1994
南方客
南方客 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:32

    You can use !setup.py install to do that.

    Colab is just like a Jupyter notebook. Therefore, we can use the ! operator here to install any package in Colab. What ! actually does is, it tells the notebook cell that this line is not a Python code, its a command line script. So, to run any command line script in Colab, just add a ! preceding the line.

    For example: !pip install tensorflow. This will treat that line (here pip install tensorflow) as a command prompt line and not some Python code. However, if you do this without adding the ! preceding the line, it'll throw up an error saying "invalid syntax".

    But keep in mind that you'll have to upload the setup.py file to your drive before doing this (preferably into the same folder where your notebook is).

    Hope this answers your question :)

提交回复
热议问题