最佳答案
在我的 setup.py文件中,我指定了几个运行项目所需的库:
setup(
# ...
install_requires = [
'django-pipeline',
'south'
]
)
如何指定这些库的必需版本?