98👍
This will install tastypie
and its dependencies:
$ easy_install pip
$ pip install django-tastypie
To get only dateutil:
$ pip install python-dateutil
15👍
I am not sure if this is different on Windows, but it does not appear you are referencing an actual link (see the Reading line). Instead, try this:
easy_install python-dateutil
That will (hopefully) get the package you need. Also, see this post for what looks like a similar issue.
- [Django]-How to read the database table name of a Model instance?
- [Django]-How do you insert a template into another template?
- [Django]-How to remove all of the data in a table using Django
5👍
On Windows:
Simply use following code,
$ pip install python-dateutil
If you want with easy_install try below command,( run Command Prompt CMD as Administrator )
$ easy_install python-dateutil
On Ubuntu:
For Ubuntu OS use following code,
sudo apt-get install python-dateutil
- [Django]-Python 3 list(dictionary.keys()) raises error. What am I doing wrong?
- [Django]-Django-AttributeError 'User' object has no attribute 'backend' (But….it does?)
- [Django]-ImageField overwrite image file with same name
Source:stackexchange.com