개발/Python

Google Colab (Colaboratory) python library module install, upgrade, uninstall

강서버 2021. 5. 1. 14:44
반응형

Google Colab (Colaboratory) python library install

 

1. Python module install/upgrade/uninstall

 

1-1. Module install

!pip install (module name)

ex,

!pip install scikit-learn

 

1-2. Module upgrade

!pip install --upgrade (module name)

ex,

!pip install --upgrade scikit-learn

 

1-3. Module uninstall

!pip uninstall (module name)

ex,

!pip uninstall scikit-learn

 

2. Program install, upgrade, remove

 

2.1 Program install

!apt install (program name)

ex,

!apt install python3

 

2.2 Program upgrade

!apt upgrade

 

2.3 Program remove (Be careful.)

!apt remove (program name)

ex,

!apt remove python3-pip

 

 

참조 : colab.research.google.com/notebooks/snippets/importing_libraries.ipynb

 

Snippets: Importing libraries

Run, share, and edit Python notebooks

colab.research.google.com

 

 

728x90
반응형