[Answered ]-VirtualEnv is installed, but cannot find bin/activate

1πŸ‘

βœ…

The place where you have your project isn’t necessarily the place where you have the environment. Did you have the environment in git too?

Perhaps what you need to do (in case you don’t have a versioned environment) is recreate the environment (virtualenv environment), install the dependencies (pip install -r req.txt) and then activate it (source path/to/environment/bin/activate).

Good luck.

πŸ‘€mariano

1πŸ‘

Ok

Try this an awesome link to How to install django in virtual environment .

http://ayarshabeer.com/post/50973941605/install-multiple-django-version-using-virtualenvwrapper

0πŸ‘

Use the following steps

virtualenv virenv_name --no-site-packages -  create new virtual environment in git
pip install -r requirements.pip           -  It can be used for install tools in   
                                              (requirements.pip files)
yolk -l                   - It will used for list install files
source git/virenv_name/bin/activate       - Activate virtualenv
deactivate                                -  Deactivate virtualenv
πŸ‘€gangakvp

Leave a comment