我正在尝试安装django-crm。我正在使用pip安装它:
pip install django-crm我得到了:
Downloading/unpacking django-crm
Could not find any downloads that satisfy the requirements django-crm
No distributions at all found for django-crm
Storing complete log in C:\users\User\AppData\Roaming\pip\pip.log编辑:
日志文件包括以下内容:
------------------------------------------------------------
C:\Python27\Scripts\pip-script.py run on 06/27/12 00:33:50
Downloading/unpacking django-crm
Getting page http://pypi.python.org/simple/django_crm
Could not fetch URL http://pypi.python.org/simple/django_crm: HTTP Error 404: Not Found
Will skip URL http://pypi.python.org/simple/django_crm when looking for download links for django-crm
Getting page http://pypi.python.org/simple/
URLs to search for versions for django-crm:
* http://pypi.python.org/simple/django_crm/
Getting page http://pypi.python.org/simple/django_crm/
Could not fetch URL http://pypi.python.org/simple/django_crm/: HTTP Error 404: Not Found
Will skip URL http://pypi.python.org/simple/django_crm/ when looking for download links for django-crm
Could not find any downloads that satisfy the requirement django-crm
No distributions at all found for django-crm
Exception information:
Traceback (most recent call last):
File "C:\Python27\lib\site-packages\pip\basecommand.py", line 126, in main
self.run(options, args)
File "C:\Python27\lib\site-packages\pip\commands\install.py", line 223, in run
requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
File "C:\Python27\lib\site-packages\pip\req.py", line 954, in prepare_files
url = finder.find_requirement(req_to_install, upgrade=self.upgrade)
File "C:\Python27\lib\site-packages\pip\index.py", line 152, in find_requirement
raise DistributionNotFound('No distributions at all found for %s' % req)
DistributionNotFound: No distributions at all found for django-crm有人能帮我吗?如何安装django-crm?我可以在哪里看到它的演示而不是我自己安装它吗?
谢谢!!
发布于 2012-07-03 07:12:55
因为没有Django CRM的PyPI条目,所以给pip提供它可以找到包的位置:
$ pip install svn+http://django-crm.googlecode.com/svn/trunk/#egg=django-crm这对我很管用。
发布于 2018-04-20 16:05:13
在github中尝试所有新的django crm
https://stackoverflow.com/questions/11216347
复制相似问题