How To Install arbor on Fedora 34
Introduction
In this tutorial we learn how to install arbor
on Fedora 34.
What is arbor
Arbor is a high-performance library for Computational Neuroscience simulations. Some key features include - Asynchronous spike exchange that overlaps compute and communication. - Efficient sampling of voltage and current on all back ends. - Efficient implementation of all features on GPU. - Reporting of memory and energy consumption (when available on platform). - An API for addition of new cell types, e.g. LIF and Poisson spike generators. - Validation tests against numeric/analytic models and NEURON. Documentation is available at https arbor 0.3 8.fc34 x86_64 14 M arbor-0.3-8.fc34.src.rpm fedora Multi-compartment neural network simulation library https BSD Arbor is a high-performance library for Computational Neuroscience simulations. Some key features include - Asynchronous spike exchange that overlaps compute and communication. - Efficient sampling of voltage and current on all back ends. - Efficient implementation of all features on GPU. - Reporting of memory and energy consumption (when available on platform). - An API for addition of new cell types, e.g. LIF and Poisson spike generators. - Validation tests against numeric/analytic models and NEURON. Documentation is available at https
We can use yum
or dnf
to install arbor
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install arbor.
Install arbor on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install arbor
using dnf
by running the following command:
sudo dnf -y install arbor
Install arbor on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install arbor
using yum
by running the following command:
sudo yum -y install arbor
How To Uninstall arbor on Fedora 34
To uninstall only the arbor
package we can use the following command:
sudo dnf remove arbor
arbor Package Contents on Fedora 34
/usr/bin/modcc
/usr/lib/.build-id
/usr/lib/.build-id/5b
/usr/lib/.build-id/5b/453f1f561cee0c9d6df90098d2fe2892e8e2ef
/usr/lib/python3.9/site-packages/arbor
/usr/lib/python3.9/site-packages/arbor/VERSION
/usr/lib/python3.9/site-packages/arbor/__init__.py
/usr/lib/python3.9/site-packages/arbor/__pycache__
/usr/lib/python3.9/site-packages/arbor/__pycache__/__init__.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/arbor/__pycache__/__init__.cpython-39.pyc
/usr/lib/python3.9/site-packages/arbor/_arbor.cpython-39-i386-linux-gnu.so
/usr/share/doc/arbor
/usr/share/doc/arbor/README.md
/usr/share/licenses/arbor
/usr/share/licenses/arbor/LICENSE
/usr/share/licenses/arbor/LICENSE-tinyopt
/usr/bin/modcc
/usr/lib/.build-id
/usr/lib/.build-id/fa
/usr/lib/.build-id/fa/aef6838855b8ee4efc9d94c02ee2314dbf24d3
/usr/lib64/python3.9/site-packages/arbor
/usr/lib64/python3.9/site-packages/arbor/VERSION
/usr/lib64/python3.9/site-packages/arbor/__init__.py
/usr/lib64/python3.9/site-packages/arbor/__pycache__
/usr/lib64/python3.9/site-packages/arbor/__pycache__/__init__.cpython-39.opt-1.pyc
/usr/lib64/python3.9/site-packages/arbor/__pycache__/__init__.cpython-39.pyc
/usr/lib64/python3.9/site-packages/arbor/_arbor.cpython-39-x86_64-linux-gnu.so
/usr/share/doc/arbor
/usr/share/doc/arbor/README.md
/usr/share/licenses/arbor
/usr/share/licenses/arbor/LICENSE
/usr/share/licenses/arbor/LICENSE-tinyopt
References
- [arbor website](https://github.com/arbor-sim/arbor https://github.com/arbor-sim/arbor)
Summary
In this tutorial we learn how to install arbor
on Fedora 34 using yum and dnf.