Linking virtualenv to project using setvirtualenvproject command not working (windows)

I am trying to link my virtualenv to a django project. So when I type the command workon my_project

, it should be cd for my django project.

(my_project) C:\User\User\Desktop\Project>
(my_project) C:\User\User\Desktop\Project>setvirtualenvproject
'setvirtualenvproject' is not recognized as an internal or external command, operable program or batch file.

      

Why isn't the team working? Is there any other way to link virtualenv to my django project?

DECIDED

I was able to link my virtualenv to my django project using this command

setprojectdir [path to the project folder]

      

+3


source to share


2 answers


setvirtualenvproject

is the virtualenvwrapper command. Do you have virtualenvwrapper-win installed ?



0


source


I was able to link my virtualenv to my django project using this command



setprojectdir [path to the project folder]

      

+2


source







All Articles