forked from pyblosxom/pyblosxom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UPGRADE
50 lines (29 loc) · 1.04 KB
/
UPGRADE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.. _upgrading:
=====================
Upgrading Pyblosxom
=====================
This walks through upgrading Pyblosxom from a previous version.
Before upgrading
================
First, read through the What's New documentation which includes
pointers to users and plugin developers regarding changes between
older versions and newer versions.
.. only:: text
This is in the ``WHATSNEW`` file.
.. only:: html
This is at :ref:`whatsnew`.
To be safe, install Pyblosxom locally (as opposed to on the server or
over your existing blog) and test your blog configuration and plugins
to make sure everything works with the new version.
Upgrading site-wide
===================
Using `pip`_::
pip install --upgrade pyblosxom
**OR** Using `easy_install`_::
easy_install -U pyblosxom
.. _pip: http://pypi.python.org/pypi/pip
.. _easy_install: http://pypi.python.org/pypi/setuptools
Upgrading in a virtual environment
==================================
First, activate your virtual environment, then use either pip or
easy_install as above.