Skip to content

Instantly share code, notes, and snippets.

@franktoffel
Created June 19, 2016 10:43
Show Gist options
  • Save franktoffel/0ba72f3268fee28bcd8c38de985ec5ef to your computer and use it in GitHub Desktop.
Save franktoffel/0ba72f3268fee28bcd8c38de985ec5ef to your computer and use it in GitHub Desktop.
How to install Nikola on Windows with Anconda-conda env
conda create --name nikolaenv python=3
activate nikolaenv
conda install pillow lxml
pip install Nikola[extras]
@franktoffel
Copy link
Author

franktoffel commented Jun 19, 2016

Problem following the getting started tutorial of Nikola:

The problem seems to be related with windows firewall in the Step 6. Start the development server.
Using the following command:
nikola serve --browser

This error appears:

Unable to connect

Firefox can't establish a connection to the server at 0.0.0.0:8000.

or

This site can’t be reached

The webpage at http://0.0.0.0:8000/ might be temporarily down or it may have moved permanently to a new web address.

Solution

use this command instead:
nikola serve --browser -a localhost -p 80

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment