BVLC / caffe

Caffe: a fast open framework for deep learning.
http://caffe.berkeleyvision.org/
Other
33.96k stars 18.72k forks source link

caffe installation #7071

Open fatemehkalantari1993 opened 1 year ago

fatemehkalantari1993 commented 1 year ago

Hi, in the past, I worked with Caffe on Ubuntu 16. Now, I update my Ubuntu to 20.4 and I can't install caffe on Ubuntu 20.4 the way before. Also, It is written on the Caffe website that you should use "sudo apt install Caffe-CPU or cuda". this command doesn't work.

tada123 commented 10 months ago

You can clone this repo and build it from source by common way:

mkdir build
cd build
cmake ..  # + Maybe some specific parameters
make -j $(( $(nproc) + 2 ))

Then install using:

make install