How to install python3-dateutil in Ubuntu 12.04 (Precise)?
Matthew Martinez
I am trying to install the package python3-dateutil in a Ubuntu 12.04.4 LTS (Precise) with aptitude, but I cannot find it anywhere. How can I install it?
1 Answer
What does the following command say?
apt-cache search python3-dateutilIf it shows python3-dateutil - powerful extensions to the standard datetime module in Python 3, run the following:
sudo apt-get install python3-dateutilAlternative is to install with pip:
pip install python-dateutil 5