在 Ubuntu 14.04 上安装 django-cms
Installing django-cms on Ubuntu 14.04
我一直在尝试将 django-cms 安装到 Ubuntu 上的虚拟环境中。我完全按照文档中的安装说明进行操作 (http://django-cms.readthedocs.org/en/support-3.0.x/introduction/install_from_scratch.html),但在执行以下命令后我一直收到错误消息。
djangocms -p . mysite
错误:
Path '.' already exists and is not empty, please choose a different one
If you want to use this path anyway use the -s flag to skip this check.
这是什么意思,我该如何解决?
您需要为命令提供一个不存在的路径作为参数,它将在其中创建项目。
例如djangocms -p mysite mysite
我一直在尝试将 django-cms 安装到 Ubuntu 上的虚拟环境中。我完全按照文档中的安装说明进行操作 (http://django-cms.readthedocs.org/en/support-3.0.x/introduction/install_from_scratch.html),但在执行以下命令后我一直收到错误消息。
djangocms -p . mysite
错误:
Path '.' already exists and is not empty, please choose a different one
If you want to use this path anyway use the -s flag to skip this check.
这是什么意思,我该如何解决?
您需要为命令提供一个不存在的路径作为参数,它将在其中创建项目。
例如djangocms -p mysite mysite