@mmansouri86 There is something you can do, this is what worked for me:
First, you need to manually download the libtinfo5_6.4-2_amd64 that is a dependency for the libncurses5 package.
You can download it using curl to:
curl -O http://launchpadlibrarian.net/648013231/libtinfo5_6.4-2_amd64.deb
install it with dpkg:
sudo dpkg -i libtinfo5_6.4-2_amd64.deb
then, download manually the libncurses5_6.4-2_amd64.deb deb package. Can do it with curl too:
curl -O http://launchpadlibrarian.net/648013227/libncurses5_6.4-2_amd64.deb
then install it with dpkg:
sudo dpkg -i libtinfo5_6.4-2_amd64.deb
Lastly, download the libaio1 deb package.
curl -O http://launchpadlibrarian.net/646633572/libaio1_0.3.113-4_amd64.deb
and install it:
sudo dpkg -i libaio1_0.3.113-4_amd64.deb
After this, the warnings about dependencies should disappear.