Installation instructions ========================= If you're used to play with pip_ and virtualenv_ the install process should be quite easy for you. .. contents:: .. _install_dependencies: Dependencies ------------ To install Flask+HTMLBlog the dependences you have to resolve are the following: * Flask_ * Flask-Flatpages_ * Flask-Script_ * Frozen-Flask_ * Sphinx_ This packages deppends on other thirds. You can see the complete list in the ``requirements.txt`` file. .. _virtualenv: Virtualenv ---------- We recommend you to create a virtualenv and run Flask+HTMLBlog into them. To create a virtualenv you must follow this steps:: $ sudo easy_install pip $ pip install virtualenv $ mkdir -p flask-htmlblog/{src,env} $ cd flask-htmlblog/ $ virtualenv --distribute --no-site-packages env/ $ hg clone https://bitbucket.org/r0sk/flask-htmlblog src $ source env/bin/activate (env)$ pip install -r src/requirements.txt And that's all, the Flask+HTMLBlog was successfully installed on your computer. .. _pip: http://www.pip-installer.org/en/latest/index.html .. _virtualenv: http://pypi.python.org/pypi/virtualenv .. _Flask: http://flask.pocoo.org/ .. _Flask-Flatpages: http://packages.python.org/Flask-FlatPages/ .. _Flask-Script: http://packages.python.org/Flask-Script/ .. _Frozen-Flask: http://packages.python.org/Frozen-Flask/ .. _Sphinx: http://sphinx.pocoo.org/