Reputation: 63
I am trying to use django shop
but it showing me "no module setuptool" while im about to install django shop through command prompt
will plz guide someone ...!
This is my error :
C:\django-shop>python setup.py install
Traceback (most recent call last):
File "setup.py", line 1, in <module>
from setuptools import setup, find_packages
ImportError: No module named setuptools
Upvotes: 0
Views: 711
Reputation: 22808
Every time you installed an app try to search for their documentation, it will answer your problem.
Documentation for django-shop:
https://django-shop.readthedocs.org/en/latest/tutorial.html
Upvotes: 0
Reputation: 578
I'd recommend using virtualenv to keep things clean and simple.
Once you've got that running, installin django-shop should just be the case of:
pip install django-shop
Check also requirements files for pip.
Upvotes: 0
Reputation: 1963
I think the answer to your question could , you don't have setuptools installed?
I think setuptools is an extension for the python library
You can install it using this link
https://pypi.python.org/pypi/setuptools
Upvotes: 1