doc/tutorials/advanced/part01_create-cube.rst
changeset 12533 3657b5d82590
parent 12530 9d88e1177c35
child 12534 e0e7d8ca051f
equal deleted inserted replaced
12532:38004d09d178 12533:3657b5d82590
     8 Step 1: creating a virtual environment
     8 Step 1: creating a virtual environment
     9 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     9 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    10 
    10 
    11 Fisrt I need a python virtual environment with cubicweb::
    11 Fisrt I need a python virtual environment with cubicweb::
    12 
    12 
    13   virtualenv python-2.7.5_cubicweb
    13   python3 -m venv venv
    14   . /python-2.7.5_cubicweb/bin/activate
    14   . venv/bin/activate
    15   pip install cubicweb[pyramid]
    15   pip install cubicweb[pyramid]
    16 
    16 
    17 
    17 
    18 Step 2: creating a new cube for my web site
    18 Step 2: creating a new cube for my web site
    19 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    19 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~