Reputation: 1603
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.
Upvotes: 2
Views: 2470
Reputation: 239340
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/
Upvotes: 9
Reputation: 174632
Download the zip archive, extract the multiuploader
directory to the same directory where you have manage.py
, then follow the directions from the github page.
Upvotes: 0