Linked Questions
76 questions linked to/from pip install from git repo branch
9
votes
1
answer
7k
views
How to include git branch in installing from requirements in Python? [duplicate]
Hi I need to install from a branch of a git repo. I want to include it on the requirements.txt so that it would install using the command pip install -r requirements.txt
What I know is how to install ...
4
votes
2
answers
3k
views
How to install a pip module from its master branch on github? [duplicate]
I've started using the Python Chalice framework and I found out I need a bugfix that was merged less than 24 hours ago into the framework's master branch, through this PR:
https://github.com/aws/...
2
votes
1
answer
5k
views
Install a python package in a virtual environment directly from git [duplicate]
I have a python package I want to use, but it appears that the version installed through pip is seriously outdated, to the point where example code doesn't work. some research independently verified ...
0
votes
1
answer
3k
views
How to run and install a download python package from the GitHub website? [duplicate]
I want to fully download this package, which I downloaded from the GitHub website, but I do not know how to run this package. There is no file named [setup.py] in the package that came with the ...
1
vote
3
answers
1k
views
Updating gspread to get duplicate_sheet [duplicate]
How do I update gspread to get the sheet.duplicate_sheet method? I need to duplicate a sheet and can't seem to get the module updated to the latest version (3.1.0).
0
votes
1
answer
736
views
How to install python libraries from GitHub onto PyCharm? [duplicate]
I am just learning how to use GitHub, I want to download a python library to get the latest exchange rate between two currencies and I found one on GitHub. How would I download it and use it on ...
1
vote
0
answers
78
views
How to pip install from repository [duplicate]
There is open source library that I want to change. Currently our project uses it as pipenv module (pip install ofxstatement). How do I change this open source library and import in our current ...
0
votes
0
answers
75
views
Python - Installing from forked GitHub repo [duplicate]
I am trying to install the package found here:
https://github.com/xang1234/pytextrank
Which is a forked repo from pip3 install pytextrank.
I have scoured this website, which offers different ...
0
votes
0
answers
49
views
Proper directory for third party library python3 [duplicate]
I am working on a Python project
and have to use a third party library which is not uploaded in pip
Thus, I am going to put it in my project, Like this
project----
L mypackage
L ...
0
votes
0
answers
35
views
can't pip install a branch [duplicate]
I want to install this branch https://github.com/pathpy/pathpy/tree/plot which is a few commits ahead because I need some specific functions here. I am not sure how to pip install this branch and work ...
829
votes
11
answers
498k
views
How to state in requirements.txt a direct github source
I've installed a library using the command
pip install git+git://github.com/mozilla/elasticutils.git
which installs it directly from a Github repository. This works fine and I want to have that ...
163
votes
4
answers
93k
views
How can I make setuptools install a package that's not on PyPI?
I've just started working with setuptools and virtualenv. My package requires the latest python-gearman that is only available from GitHub. The python-gearman version that's on PyPI is an old one. The ...
54
votes
4
answers
123k
views
Import a Python library from Github
I'm new to Python so this may sound silly.
I want to use a Python library I've found on Github, lets say on https://github.com/praw-dev/praw, and I want to be able to do git pull in the future to ...
39
votes
1
answer
41k
views
Python / pip, how do I install a specific version of a git repository from github (what is the correct url)?
I want to install Django 1.7 via pip. It is currently a development version, so not in pips repositories.
So I have installed packages from github before using:
pip install git+[url here]
Now ...
36
votes
2
answers
17k
views
How can I specify a custom Git branch in my Pipfile?
It is possible to specify in Pipfile packages from custom Git repository.
But I cannot find comprehensive documentation on how to specify the concrete branch or a commit to be used for installation.
...