i have an issue with requirements
See original GitHub issueroot@HOST:~# pip install tweepy
Downloading/unpacking tweepy
Running setup.py egg_info for package tweepy
Traceback (most recent call last):
File "<string>", line 14, in <module>
File "/root/build/tweepy/setup.py", line 17, in <module>
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
TypeError: parse_requirements() got an unexpected keyword argument 'session'
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 14, in <module>
File "/root/build/tweepy/setup.py", line 17, in <module>
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
TypeError: parse_requirements() got an unexpected keyword argument 'session'
----------------------------------------
Command python setup.py egg_info failed with error code 1 in /root/build/tweepy
Storing complete log in /root/.pip/pip.log
please tel me if you need more details
Issue Analytics
- State:
- Created 9 years ago
- Comments:13 (1 by maintainers)
Top Results From Across the Web
4 Common Requirements Issues - Product Arts
Missing Market & Business Drivers ; Focus on Features, not on User Goals; Missing Qualities and Constraints; Lack of Market Validation. #1 -...
Read more >Quick tips for managing requirements issues - Bridging the Gap
Finally, once an issue is resolved, you'll want to communicate the end result to all interested stakeholders. One way to elevate yourself and...
Read more >The Problem with Requirements: Why is it Still a Problem?
Given the number of software projects that companies deliver late, spend too much on, and don't meet business needs, requirements—a major contributing ...
Read more >How to Deal with Bad Requirements as a Tester
Most of time, it's a good bet to prioritize user experience and convenience when requirements are not clear. Domain experience, overall testing ...
Read more >What are the issues which you face during requirements ...
There are two important issues in requirements management: The biggest issue is the level of uncertainty in the requirements.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Try updating pip: sudo pip install --upgrade pip
This fixed the problem for me.
This was caused by #534, which uses a hack to fix #533, caused by a change (https://github.com/pypa/pip/pull/1796) in pip 6.0 that required an HTTP session to be passed even if there weren’t any external references by URL to resolve. However, including this session caused the installation to break for versions of pip <6.0. Nevertheless, due to a change (https://github.com/pypa/pip/pull/4700) in pip 10.0.0 (see #1029) and the resulting fix by https://github.com/tweepy/tweepy/commit/29e32cdf4a67b1fca25dbf04d7b8069ac1c9dd0d (#1030) in 3.7.0, this should no longer be a relevant issue.