081bfc7df6fb857ac0af0eda1571f4d28e94ae60
vsmalladi
  Fri May 11 10:36:18 2012 -0700
Updated files to state the new name of the library, didn't modify examples as that would be too hard to update with constant reorganization. Redmine #7029.
diff --git python/virtual.txt python/virtual.txt
index b0a3df7..48b6738 100644
--- python/virtual.txt
+++ python/virtual.txt
@@ -1,27 +1,29 @@
 Guide for Creating Virtual Environments for Python
 
 Reason
 
 To load modules and packages that are only relevant to you or
 to develop and test new modules and packages not ready for general use.
 
 
 How To
 
 1) Generate a virtual environment
 
+Note: Run commands outside repositories, suggested place is home directory
+
 Generate a blank virtual environment using python2.7: 
 
 virtualenv -p python2.7 ENV
 
 Generate a snapshot environment with base packages(BeautifulSoup==3.2.1 and MySQL-python==1.2.3) used for ENCODE:
 
 python ~/kent/python/ucsc_virtualenv.py -p python2.7 ENV
 
 2) Switch to use virtual environement
 
 Bash:
 
 source ENV/bin/activate
 
 C-Shell: