nikodamn
nikodamn

Reputation: 284

Import blogspot posts to Jekyll

I imported my posts from blogger to my jekyll blog using this instructions. Unfortunetly it's in pure HTML format not in my jekyll's template post like those created by octopress. I'm looking for any ways to do that and I found this. After installing blogger2jekyll I got "command not found: blogger2jekyll" message. Any advice?

Thanks from advance!

Upvotes: 0

Views: 130

Answers (1)

David Jacquel
David Jacquel

Reputation: 52819

As your message says : Please try running this command again as root/Administrator

sudo npm install -g blogger2jekyll

Edit: I see in your comment that your symlink is at /usr/local/bin/bin/blogger2jekyll.

If /usr/local/bin/bin/blogger2jekyll path/to/xml destination/path runs correctly, it's a PATH problem.

The you can /usr/local/bin/bin to your path with a :

export PATH=/usr/local/bin/bin:$PATH

Upvotes: 1

Related Questions