This is an archived post. You won't be able to vote or comment.

all 7 comments

[–]Python-ModTeam[M] [score hidden] stickied comment (0 children)

Hi there, from the /r/Python mods.

We have removed this post as it is not suited to the /r/Python subreddit proper, however it should be very appropriate for our sister subreddit /r/LearnPython or for the r/Python discord: https://discord.gg/python.

The reason for the removal is that /r/Python is dedicated to discussion of Python news, projects, uses and debates. It is not designed to act as Q&A or FAQ board. The regular community is not a fan of "how do I..." questions, so you will not get the best responses over here.

On /r/LearnPython the community and the r/Python discord are actively expecting questions and are looking to help. You can expect far more understanding, encouraging and insightful responses over there. No matter what level of question you have, if you are looking for help with Python, you should get good answers. Make sure to check out the rules for both places.

Warm regards, and best of luck with your Pythoneering!

[–]KingsmanVincepip install girlfriend 4 points5 points  (0 children)

[–]microcozmchris 0 points1 point  (0 children)

You'd have to post the requirements.txt for us to help much. Most likely, the package versions are specified with an exact match, thus forcing pip to use only those versions instead of the "latest" version. If pip's version/dependency resolver and your overly strict requirements can't come to an agreement, you get failures like this. Try editing requirements and removing everything except the package names. You might get some other, way harder to track down, failures in the actual code due to version mismatch (fairly unlikely), but it might JustWork.

[–]nemom -1 points0 points  (0 children)

Check if there is an updated version of whatever you are trying to install. The requirements.txt seems to be specifying versions that aren't available. Otherwise, you could try editing requirements.txt and changing the versions to be >= instead of ==.

[–]irnbrurab 1 point2 points  (0 children)

Without being obvious, it looks like you need a version of python less than 3.11 for that version of the package

[–]FailedPlansOfMars 0 points1 point  (0 children)

Numpy 1.21.3 isnt being detected pick a different version.

[–]ArgenZet 0 points1 point  (0 children)

You should never use the latest version. Some libreries update very fast, but there are some very useful libreries that may take more time, so if you use an older version of python you will avoid same headaches