/usr/bin/python3: Error while finding spec for 'virtualenvwrapper.hook_loader' (: No module named 'virtualenvwrapper')

后端 未结 12 1615
感情败类
感情败类 2020-12-08 03:33

I\'m trying to follow How To Serve Django Applications with uWSGI and Nginx on Ubuntu 14.04 and I\'m failing at the very earlier stage, due to amount of output, I placed all

12条回答
  •  伪装坚强ぢ
    2020-12-08 04:35

    check your python3 installation directory:

    which python3

    If installed by brew you should get:

    /usr/local/python3

    export python version to be used virtualenvwrapper:

    export VIRTUALENVWRAPPER_PYTHON=/usr/local/python3

    source your shell configuration file:
    bash

    source .bashrc

    zsh

    source .zshrc

提交回复
热议问题