Wagtail安装:找不到Wagtail命令

时间:2018-01-15 10:27:41

标签: python django wagtail

我正在尝试安装wagtail。正如文档建议的那样,我使用pip安装了wag:

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

这里有什么问题?

2 个答案:

答案 0 :(得分:7)

我猜@ 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

答案 1 :(得分:1)

执行此操作的另一种方法是使用Python 3.6及更高版本内置的-m venv命令。

检查Python版本

python --version

创建venv并安装要求

python -m venv venv
source venv/bin/activate
pip install -r requirements.txt

在安装完成后,尝试运行wagtail命令。