Skip to content

Instantly share code, notes, and snippets.

Created December 17, 2012 08:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4316576 to your computer and use it in GitHub Desktop.
Save anonymous/4316576 to your computer and use it in GitHub Desktop.
dm@Morrigan:~$ mkvirtualenv -p python3.2 pelitest
Running virtualenv with interpreter /usr/bin/python3.2
...
(pelitest)dm@Morrigan:~$ cdvirtualenv
(pelitest)dm@Morrigan:~/myprojects/pelitest$ mkdir src
(pelitest)dm@Morrigan:~/myprojects/pelitest$ cd src/
(pelitest)dm@Morrigan:~/myprojects/pelitest/src$ git clone http://github.com/dmdm/pelican
Cloning into 'pelican'...
...
(pelitest)dm@Morrigan:~/myprojects/pelitest/src$ cd pelican/
(pelitest)dm@Morrigan:~/myprojects/pelitest/src/pelican$ git checkout py3k-v4
Branch py3k-v4 set up to track remote branch py3k-v4 from origin.
Switched to a new branch 'py3k-v4'
(pelitest)dm@Morrigan:~/myprojects/pelitest/src/pelican$ python setup.py develop
...
Installed /home/dm/myprojects/pelitest/src/pelican
Processing dependencies for pelican==3.2
Adding six 1.2.0 to easy-install.pth file
Adding Unidecode 0.04.10 to easy-install.pth file
Adding blinker 1.2 to easy-install.pth file
Adding pytz 2012h to easy-install.pth file
Adding docutils 0.10 to easy-install.pth file
Adding Pygments 1.5 to easy-install.pth file
Adding Jinja2 2.6 to easy-install.pth file
Best match: feedgenerator 1.2.1
File "build/bdist.linux-x86_64/egg/feedgenerator.py", line 121
except UnicodeDecodeError, e:
^
SyntaxError: invalid syntax
zip_safe flag not set; analyzing archive contents...
File "/home/dm/myprojects/pelitest/lib/python3.2/site-packages/feedgenerator-1.2.1-py3.2.egg/feedgenerator.py", line 121
except UnicodeDecodeError, e:
^
SyntaxError: invalid syntax
Finished processing dependencies for pelican==3.2
(pelitest)dm@Morrigan:~/myprojects/pelitest/src/pelican$ cd ..
(pelitest)dm@Morrigan:~/myprojects/pelitest/src$ git clone http://github.com/dmdm/feedgenerator-py3k
(pelitest)dm@Morrigan:~/myprojects/pelitest/src/feedgenerator-py3k$ python setup.py develop
Adding feedgenerator 1.5.dev to easy-install.pth file
(pelitest)dm@Morrigan:~/myprojects/pelitest/src/feedgenerator-py3k$ cd ../pelican/
(pelitest)dm@Morrigan:~/myprojects/pelitest/src/pelican$ rm -r /tmp/output/
(pelitest)dm@Morrigan:~/myprojects/pelitest/src/pelican$ mkdir /tmp/output
(pelitest)dm@Morrigan:~/myprojects/pelitest/src/pelican$ pelican samples/content -s samples/pelican.conf.py -o /tmp/output/
WARNING: Could not process /home/dm/myprojects/pelitest/src/pelican/samples/content/cat1/markdown-article.md
Missing dependencies for md
WARNING: Unable to find cat1/markdown-article.md, skipping url replacement
WARNING: Unable to find cat1/markdown-article.md, skipping url replacement
WARNING: Unable to find cat1/markdown-article.md, skipping url replacement
WARNING: Unable to find cat1/markdown-article.md, skipping url replacement
WARNING: Unable to find cat1/markdown-article.md, skipping url replacement
WARNING: Unable to find cat1/markdown-article.md, skipping url replacement
(pelitest)dm@Morrigan:~/myprojects/pelitest/src/pelican$ pip install markdown
Successfully installed markdown
(pelitest)dm@Morrigan:~/myprojects/pelitest/src/pelican$ pelican samples/content -s samples/pelican.conf.py -o /tmp/output/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment