InterviewSolution
| 1. |
How Can I Do Non-root Installations?how Can I Install Turbogears On A Unix-like System Without Root User Privileges? |
|
Answer» An easy and quick way is to use the virtualenv program to create a separate, clean Python environment and install TURBOGEARS in this environment. The basic steps are:
is the name of a directory that virtualenv should create. It will contain the new Python environment. Everytime you WANT to work with this environment, you NEED to carry out step 3. from above, so that the library MODULES and scripts from the environment are used. An easy and quick way is to use the virtualenv program to create a separate, clean Python environment and install TurboGears in this environment. The basic steps are: is the name of a directory that virtualenv should create. It will contain the new Python environment. Everytime you want to work with this environment, you need to carry out step 3. from above, so that the library modules and scripts from the environment are used. |
|