Views:
1,255
Votes: 5
Link:
🔍 See Original Answer on Ask Ubuntu ⧉ 🔗
URL:
https://askubuntu.com/q/1363392
Title:
./configure: No such file or diectory
ID:
/2021/09/12/._configure_-No-such-file-or-diectory
Created:
September 12, 2021
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
Installing from repositories might be an easier method. However it was dropped from the 20.04 repository as this answer states. The answer is replicated below.
The wicd-gtk
was removed from Ubuntu 20.04 LTS repositories because of Python 2 deprecation.
But you still can install it if you download packages manually from 19.10:
mkdir -p ~/Downloads/wicd
cd ~/Downloads/wicd
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/p/pygtk/python-gtk2_2.24.0-6_amd64.deb
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/p/pygtk/python-glade2_2.24.0-6_amd64.deb
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/w/wicd/python-wicd_1.7.4+tb2-6_all.deb
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/w/wicd/wicd-daemon_1.7.4+tb2-6_all.deb
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/w/wicd/wicd-gtk_1.7.4+tb2-6_all.deb
sudo apt-get update
sudo apt-get install ./*.deb
sudo apt-get install ./*.deb # second time for correct configuration
and then use it.