Add a note to uninstall pip packages on unstack

Adding a note in quickstart guide to uninstall pip
packages before restacking the environment.

Closes Bug: #1781807

Change-Id: Ic2186683a69e7dc9f689ef5b505582ffed6ef948
This commit is contained in:
Namrata 2018-07-17 20:45:41 +05:30
parent 6d13f2e934
commit 542d6cb039

View File

@ -52,6 +52,16 @@ Run devstack::
$ cd /opt/stack/devstack $ cd /opt/stack/devstack
$ ./stack.sh $ ./stack.sh
.. note::
If the developer have a previous devstack environment and they want to re-stack
the environment, they need to uninstall the pip packages before restacking::
$ ./unstack.sh
$ ./clean.sh
$ pip freeze | grep -v '^\-e' | xargs sudo pip uninstall -y
$ ./stack.sh
Prepare your session to be able to use the various openstack clients including Prepare your session to be able to use the various openstack clients including
nova, neutron, and glance. Create a new shell, and source the devstack openrc nova, neutron, and glance. Create a new shell, and source the devstack openrc
script:: script::