Execute the following steps one by one for a virtual environment project:
- If you haven't done so already, create an externals directory under your Django project directory, django-myproject.
- Then, create the libs and apps directories under it. The libs directory is for the Python modules that are required by your project—for example, Boto, Requests, Twython, and Whoosh. The apps directory is for third-party Django apps—for example, Django CMS, Django Haystack, and django-storages.
We highly recommend that you create README.md files in the libs and apps directories, where you mention what each module is for, what the used version or revision is, and where it is taken from.
- The directory structure should look something similar ...