I decided to give pelican
a try, but when I run pelican-quickstart
, I get the following dialog:
$ pelican-quickstart
Traceback (most re
I think that you've probably encountered with version conflict problem in module six
.
Try sudo pip install virtualenv
to create an isolate python environment.
start
mkdir /path/to/pelican
/path/to/pelican
and create an isolate python environment with virtualenv venv
source venv/bin/activate
pip install pelican markdown
done
and now you are free to any problem mentioned above. all the dependencies in the venv are isolated from the global environment.
To quit the venv, type deactivate