Open AMDphreak opened 5 years ago
Submitted PR #102
You actually need 2 packages.
I think they were using debian, instead of Ubuntu.
In Ubuntu, at least for me, I needed to install gcc
and g++
.
+1 on this. I'm on Ubuntu 20.04. sudo apt install gcc-c++
is an invalid package. sudo apt install gcc g++
works, though.
So, here is the full command I need for Linux Ubuntu 20.04:
# NOT this (`gcc-c++`)
sudo apt install fuse libfuse3-dev bzip2 libbz2-dev cmake gcc-c++ git libattr1-dev zlib1g-dev
# do this instead (`gcc g++`)
sudo apt install fuse libfuse3-dev bzip2 libbz2-dev cmake gcc g++ git libattr1-dev zlib1g-dev
Submitted in 2019, and yet this bug is still around? Sheesh
sudo vim /etc/apt/sources.list
#append
deb http://cz.archive.ubuntu.com/ubuntu noble main universe
sudo apt update
sudo apt install fuse libfuse3-dev bzip2 libbz2-dev cmake gcc g++ git libattr1-dev zlib1g-dev
problem solving
You actually need 2 packages.
I think they were using debian, instead of Ubuntu.
In Ubuntu, at least for me, I needed to install
gcc
andg++
.
I ran into the same issue. Let me try what you suggest. UBUNTU 24.x
I seem to have gotten around it by simply removing "c++" from
gcc-c++
. Not sure why that's even there.gcc
is the package name, andg++
is the c++ compiler name when executed.gcc-c++
isn't any package I know of.