Search code examples
djangovirtualenvdjango-apps

Install django-app without PIP


I want to install a django-app without PIP.

I'm using virtualenv with django.

The app is this: https://github.com/garmoncheg/django_multiuploader

that doesn't support PIP.

Thanks in advance. Regards.


Solution

  • pip is just a generic package installer that defaults to pulling packages from PyPi (the official Python package repository). However, it can install apps from other repositories, source revision control systems (like Git) or even local archives.

    If you want to pull the app directly from github, you can just do:

    pip install git+https://github.com/garmoncheg/django_multiuploader#egg=django-multiuploader
    

    See: https://pip.pypa.io/en/latest/topics/vcs-support/