diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2015-12-14 14:19:20 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2015-12-14 14:19:20 -0600 |
commit | 13f187992aa56c406d6e791bd781b85eaa3e1f43 (patch) | |
tree | 746272e3b03ad64e593da3d8184cc453bdf4ee9d /docs/source | |
parent | e61dea3b0543650aa157faad08afcc36ba90a298 (diff) | |
download | mediagoblin-13f187992aa56c406d6e791bd781b85eaa3e1f43.tar.lz mediagoblin-13f187992aa56c406d6e791bd781b85eaa3e1f43.tar.xz mediagoblin-13f187992aa56c406d6e791bd781b85eaa3e1f43.zip |
Kludgey documentation fix so that python 2 does not break with flup
See also Issue #5373
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/siteadmin/deploying.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/source/siteadmin/deploying.rst b/docs/source/siteadmin/deploying.rst index 2f3f0428..446dd461 100644 --- a/docs/source/siteadmin/deploying.rst +++ b/docs/source/siteadmin/deploying.rst @@ -256,6 +256,11 @@ flup:: $ ./bin/easy_install flup +(Note, if you're running Python 2, which you probably are at this +point in MediaGoblin's development, you'll need to run:) + + $ ./bin/easy_install flup==1.0.3.dev-20110405 + The above provides an in-package install of ``virtualenv``. While this is counter to the conventional ``virtualenv`` configuration, it is more reliable and considerably easier to configure and illustrate. If |