在使用virtualenv和virtualenvwrapper后,我可以在任何地方创建一个项目文件夹



使用mkvirtualenv后,我得到一个文件夹。

~/virtualenv/first_project

但是我用另一个文件夹作为我所有项目的工作空间。我还能用那个文件夹吗?

谁也可以给我一个全面的步骤来设置django使用virtualenv和virtualenvwrapper?

你可以把$PROJECT_HOME放在任何你想要的地方。根据文档,您可以:

  • 使用

    同时创建虚拟环境和项目
    mkproject [-t template] [virtualenv_options] ENVNAME
    
  • 将现有项目"绑定"到现有虚拟环境

    setvirtualenvproject [virtualenv_path project_path]
    

http://virtualenvwrapper.readthedocs.org/en/latest/command_ref.html project-directory-management

Virtualenvwrapper是如此容易使用!

相关内容

  • 没有找到相关文章

最新更新