python - 鹡鸰安装 : Wagtail command not found

标签 python django wagtail

我正在尝试安装 wagtail .正如文档所建议的,我使用 pip 安装了 wagtail:

tigran@tigran:~/projects/website$ pip install wagtail
Collecting wagtail
  Using cached wagtail-1.13.1-py2.py3-none-any.whl
Collecting html5lib<1,>=0.999 (from wagtail)
  Using cached html5lib-0.999999999-py2.py3-none-any.whl
Collecting Django<1.12,>=1.8.1 (from wagtail)
  Using cached Django-1.11.9-py2.py3-none-any.whl
Collecting djangorestframework<3.7,>=3.1.3 (from wagtail)
  Using cached djangorestframework-3.6.4-py2.py3-none-any.whl
Collecting django-treebeard<5.0,>=3.0 (from wagtail)
Collecting Pillow>=2.6.1 (from wagtail)
  Using cached Pillow-5.0.0-cp27-cp27mu-manylinux1_x86_64.whl
Collecting Unidecode>=0.04.14 (from wagtail)
  Using cached Unidecode-1.0.22-py2.py3-none-any.whl
Collecting django-taggit<1.0,>=0.20 (from wagtail)
  Using cached django_taggit-0.22.2-py2.py3-none-any.whl
Collecting django-modelcluster<4.0,>=3.1 (from wagtail)
Collecting Willow<1.1,>=1.0 (from wagtail)
  Using cached Willow-1.0-py2.py3-none-any.whl
Collecting beautifulsoup4>=4.5.1 (from wagtail)
  Using cached beautifulsoup4-4.6.0-py2-none-any.whl
Collecting requests<3.0,>=2.11.1 (from wagtail)
  Using cached requests-2.18.4-py2.py3-none-any.whl
Collecting six (from html5lib<1,>=0.999->wagtail)
  Using cached six-1.11.0-py2.py3-none-any.whl
Collecting webencodings (from html5lib<1,>=0.999->wagtail)
  Using cached webencodings-0.5.1-py2.py3-none-any.whl
Collecting setuptools>=18.5 (from html5lib<1,>=0.999->wagtail)
  Using cached setuptools-38.4.0-py2.py3-none-any.whl
Collecting pytz (from Django<1.12,>=1.8.1->wagtail)
  Using cached pytz-2017.3-py2.py3-none-any.whl
Collecting idna<2.7,>=2.5 (from requests<3.0,>=2.11.1->wagtail)
  Using cached idna-2.6-py2.py3-none-any.whl
Collecting urllib3<1.23,>=1.21.1 (from requests<3.0,>=2.11.1->wagtail)
  Using cached urllib3-1.22-py2.py3-none-any.whl
Collecting certifi>=2017.4.17 (from requests<3.0,>=2.11.1->wagtail)
  Using cached certifi-2017.11.5-py2.py3-none-any.whl
Collecting chardet<3.1.0,>=3.0.2 (from requests<3.0,>=2.11.1->wagtail)
  Using cached chardet-3.0.4-py2.py3-none-any.whl
Installing collected packages: six, webencodings, setuptools, html5lib, pytz, Django, djangorestframework, django-treebeard, Pillow, Unidecode, django-taggit, django-modelcluster, Willow, beautifulsoup4, idna, urllib3, certifi, chardet, requests, wagtail
Successfully installed Django-1.11.9 Pillow-5.0.0 Unidecode-1.0.22 Willow-1.0 beautifulsoup4-4.6.0 certifi-2017.11.5 chardet-3.0.4 django-modelcluster-3.1 django-taggit-0.22.2 django-treebeard-4.2.0 djangorestframework-3.6.4 html5lib-0.999999999 idna-2.6 pytz-2017.3 requests-2.18.4 setuptools-38.4.0 six-1.11.0 urllib3-1.22 wagtail-1.13.1 webencodings-0.5.1

但是当我尝试创建一个项目时,出现以下错误:

tigran@tigran:~/projects/website$ wagtail start website
wagtail: command not found

这里有什么问题吗?

最佳答案

我猜@gasman 的评论是正确的。在 virtualenv 之外运行入门命令确实会在 Ubuntu 16.04 中为我产生这个问题。

您需要创建并激活一个 virtualenv 才能工作。假设您已经安装了 virtualenv:

mkdir myproject && cd myproject
virtualenv yourvirtualenv -p /usr/bin/python3
source yourvirtualenv/bin/activate
pip install wagtail
wagtail start website

关于python - 鹡鸰安装 : Wagtail command not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48261062/

相关文章:

python - 如何使用 Python 将本地镜像而不是 URL 发送到 Microsoft Cognitive Vision API(分析图像)?

python - 从两个大小相等的 numpy 数组创建一个最小量值的数组

python - Django:具有完全相同角色的属性和查询集的 DRY 代码?

django - 如何使用自定义表单将自定义页面添加到 django admin,与任何模型无关?

python - Wagtail:使用电子邮件创建注册页面并验证

javascript - 单击下拉菜单按价格对商品进行排序

python - 如何使用 pandas 数据框的特定行和列创建新系列?

python - 列出 python 中的赋值行为

django - Django迁移时如何设置/提供默认值?

django - 运行collectstatic并将所有内容放在S3上时Wagtail管理图标消失