I want to install ns3.33 simulator on my ubuntu 20.04.2LTS and when I run the command:
apt-get install python-pygraphviz python-kiwi python-pygoocanvas libgoocanvas-dev ipython
I have these errors:
Package ipython is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source
E: Unable to locate package python-pygraphviz E: Unable to locate package python-kiwi E: Unable to locate package python-pygoocanvas E: Unable to locate package libgoocanvas-dev E: Package 'ipython' has no installation candidate
I have tried these commands, but the same problem:
sudo apt update sudo apt install python-pip python3-pip
sudo -H pip install ipython sudo -H pip3 install ipython
How to solve this ?
ipython
is no longer available in the repository. Instead,ipython3
should be installed. – lightsaber Jan 22 '23 at 12:04