##// END OF EJS Templates
changed /var/www to /opt as example in installation, it's just a better example.
marcink -
r2650:33252b42 beta
parent child Browse files
Show More
@@ -46,7 +46,7 b' python and making things less problemati'
46 - Assuming you have installed virtualenv_ create a new virtual environment
46 - Assuming you have installed virtualenv_ create a new virtual environment
47 using virtualenv command::
47 using virtualenv command::
48
48
49 virtualenv --no-site-packages /var/www/rhodecode-venv
49 virtualenv --no-site-packages /opt/rhodecode-venv
50
50
51
51
52 .. note:: Using ``--no-site-packages`` when generating your
52 .. note:: Using ``--no-site-packages`` when generating your
@@ -59,10 +59,10 b' python and making things less problemati'
59 Python's "main" site-packages dir.
59 Python's "main" site-packages dir.
60
60
61
61
62 - this will install new virtualenv_ into `/var/www/rhodecode-venv`.
62 - this will install new virtualenv_ into `/opt/rhodecode-venv`.
63 - Activate the virtualenv_ by running::
63 - Activate the virtualenv_ by running::
64
64
65 source /var/www/rhodecode-venv/bin/activate
65 source /opt/rhodecode-venv/bin/activate
66
66
67 .. note:: If you're using UNIX, *do not* use ``sudo`` to run the
67 .. note:: If you're using UNIX, *do not* use ``sudo`` to run the
68 ``virtualenv`` script. It's perfectly acceptable (and desirable)
68 ``virtualenv`` script. It's perfectly acceptable (and desirable)
@@ -71,7 +71,7 b' python and making things less problemati'
71 - Make a folder for rhodecode data files, and configuration somewhere on the
71 - Make a folder for rhodecode data files, and configuration somewhere on the
72 filesystem. For example::
72 filesystem. For example::
73
73
74 mkdir /var/www/rhodecode
74 mkdir /opt/rhodecode
75
75
76
76
77 - Go into the created directory run this command to install rhodecode::
77 - Go into the created directory run this command to install rhodecode::
General Comments 0
You need to be logged in to leave comments. Login now