是否可以安装没有pip的django包?

时间:2014-07-01 14:06:31

标签: django install

我正在尝试安装django-dash来运行其中一个仪表板示例,看看它是什么样的。

我在Windows上运行Python 2.7和Django 1.6.5。我知道通常的方法是下载pip然后使用pip安装包。但是,我在没有管理权限的工作计算机上,因此我无法访问“Internet选项设置”以查找我的代理URL以遵循以下说明:

Proxy problems

If you work in an office, you might be behind a HTTP proxy. If so, set the environment variables http_proxy and https_proxy. Most Python applications (and other free software) respect these. Example syntax:
http://proxy_url:port
http://username:password@proxy_url:port

我在尝试安装Django时遇到了同样的问题但是能够通过在Python27 / Lib / site-packages下移动django目录来实现它。我可以用django-dash做类似的事吗?

我也尝试下载源代码并运行python setup.py install。我收到以下错误:

File "setup.py", line 3, in <module> from setuptools import setup, find_packages ImportError: No module named setuptools

链接到django-dash:http://django-dash.readthedocs.org/en/latest/

1 个答案:

答案 0 :(得分:3)

是的,您可以从The Python Package Index

获取来源

获得后,解压缩文件并手动安装(这取决于您的操作系统)。

在Linux系统上:

python setup.py build
python setup.py install

这是the full reference

编辑请注意,手动安装这些软件包时,还必须安装任何缺少的依赖项,例如:你的案例中的setuptools