VOOZH about

URL: https://www.geeksforgeeks.org/installation-guide/how-to-install-caffe-on-ubuntu/

⇱ How to Install Caffe on Ubuntu? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to Install Caffe on Ubuntu?

Last Updated : 10 Jun, 2022

Caffe is a famous open-source deep learning framework developed and maintained by Berkley AI Research (BAIR). It's extremely flexible, modular, and quick. On Github, there is a wealth of open-source documentation for Caffer. It's commonly utilised in university research projects, proofs-of-concept for startups, Computer Vision, Natural Language Processing, and other areas.

Installing Caffe on Ubuntu

Step 1: Open the terminal for executing the installation commands.

👁 Open-the-Linux-Terminal
 

Step 2: Update the system by executing the following command.

sudo apt update

👁 Update-the-Linux-System
 

Step 3: Now, it's time to set up Caffe. Execute the following command in the terminal to install Caffe CPU only version:

sudo apt install caffe-cpu

or the following command to install Caffe CUDA version:

sudo apt install caffe-cuda

👁 Installing-Caffe-on-Ubuntu
 

Now you can use Caffe in your projects to make interesting applications.

Comment