Linked Questions

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 ...
Nikko's user avatar
  • 1,572
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/...
Alex R's user avatar
  • 11.9k
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 ...
SAS's user avatar
  • 386
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 ...
Milad Hossainie - KAKA SHEX's user avatar
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).
Kirk's user avatar
  • 41
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 ...
user avatar
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 ...
0xDEAD BEEF's user avatar
  • 2,104
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 ...
Nicholas's user avatar
  • 3,757
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 ...
Wonpyo Park's user avatar
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 ...
oaksandbrooms's user avatar
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 ...
Alfe's user avatar
  • 59.8k
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 ...
andrei's user avatar
  • 2,093
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 ...
Nyxynyx's user avatar
  • 63.9k
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 ...
wobbily_col's user avatar
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. ...
kuza's user avatar
  • 3,041

15 30 50 per page
1
2 3 4 5 6