First time here? Check out the FAQ!
0

installing askbot via virtualenv
 

Trying to understand the installation steps as given in the official docs.

I ran: virtualenv siteName.

Now I want to clone askbot, but not sure what the relationship between siteName in the virtualenv command and projectName in the git clone command.

When I cd into siteName, what is the relationship between the siteName and the dir I want to clone askbot into?

Or should I run git clone first, then cd into the dir and run virtualenv without specifying a dir, that is, run "virtualenv ."?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
finid's avatar
123
finid
asked 12 years ago, updated 12 years ago

Comments

see more comments

1 Answer

0

The virtual environment (recommended even if you only run askbot on the server) can be created anywhere. For example in the same directory where the cloned code base is installed.

If you have a virtual environment, it might be easier to set up independent production and staging instances on the same machine, as well as running other applications. If you install into the global environment, there may be dependency clashes between the various applications.

Take a look at the virtualenv documentation and explanations elsewhere on the web.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
answered 12 years ago, updated 12 years ago
link

Comments

see more comments