Install pymdeco in django

1

How can I install pymdeco in django, django I have it installed in a virtual environment, install pymdeco in my machine via pip but when I try to install pymdeco with pip in the virtual environment I can not use pymdeco.

How to install pymdeco in django

    
asked by Emanuel Mamani 21.08.2016 в 00:25
source

1 answer

1

You must make sure that Django is installed in the virtual environment. Then make sure you make pip install within the same virtual environment.

For example, in your command interface, enter your virtual environment, I assume you are using virtualenv.

source tuvirtualenv/bin/activate

Now to be sure that Django is installed we will use pip freeze to see what things are installed in our environment.

pip freeze

We should show a list of applications installed in our virtual environment. With this you can check if pymdeco has been installed as well.

    
answered by 21.08.2016 в 05:18