Ncurses
libncurses5-dev?
Videos
You have to update your package lists, as this package is still available from universe pocket.
Install them with:
sudo add-apt-repository universe
sudo apt-get install libncurses5 libncurses5:i386
So adding the universe pocket didn't completely solve my problem, I found out that I also had to set up the correct foreign architecture.
To set this up, I first checked main architecture, which was amd64, and foreign architecture was empty. So I needed to add the i386 architecture as well.
$ sudo dpkg --print-architecture
$ sudo dpkg --print-foreign-architectures
$ sudo dpkg --add-architecture i386
Hi guys, at university I should be doing several projects in C using ncurses.
The professor told us to use a virtual machine with an old version of ubuntu, where we need to install libncurses5-dev and libncursesw5-dev.
I would like to continue using arch but I don't know what to install.
I have already tried to install ncurses and ncurses5-compat-libs but I still can't compile (it gives me errors related to library functions).
How can I solve?
Source code https://pastebin.com/9iqkq3qX
Errors https://pastebin.com/snNb1Vgi
I'm running 24.04 in a docker container where I had already installed RVM using Dockerfile. As my next step I want to include a ruby installation through RVM within it as well. However every single time, no matter if I try installing it beforehand, I get a "missing required package" message for libncurses5-dev, stopping the docker image build. Looking at my packages with dpkg turns up that I have libncurses-dev installed, which is the package that installs whenever I try installing libncurses5-dev. Any way to prevent the undesired behavior?