arulrajnet/attila-demo

"To Build" python 3 support

Closed this issue · 3 comments

To build

Clone the blog

git clone https://github.com/arulrajnet/attila-demo
cd attila-demo
git submodule update --init --recursive
git fetch --recurse-submodules
git pull --recurse-submodules

fabric commands

Commands do not work with Python 3

fab help
fab build
fab serve

Is there a way to build without using the fab commands? Thanks!

Yes. You can do without using fab

To build

pelican -s pelicanconf.py

To Serve

pushd output; python -m SimpleHTTPServer; popd

Then http://localhost:8000

You can also use this Makefile

@JoshZastrow Hope above solves your issue.