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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
pipis 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:
See: https://pip.pypa.io/en/latest/topics/vcs-support/