AadhaarSearchEngine
AadhaarSearchEngine copied to clipboard
Could not find a version that satisfies the requirement requirements.txt (from versions: )
I did a git clone
and entered into directory and ran this
pip install requirements.txt
At first It threw this
Collecting requirements.txt Could not find a version that satisfies the requirement requirements.txt (from versions: ) No matching distribution found for requirements.txt You are using pip version 9.0.1, however version 9.0.3 is available. You should consider upgrading via the 'pip install --upgrade pip' command.
So, I upgraded the pip with command as shown above. Then again tried to install requirements and It threw same error again.
Collecting requirements.txt Could not find a version that satisfies the requirement requirements.txt (from versions: ) No matching distribution found for requirements.txt
Please fix this.
You have to pass the -r
flag when installing from requirements.txt
file. Try running:
pip install -r requirements.txt
Added -r , Still not working!!
Hi @C0deDaedalus ,
Before pip install -r requirements.txt"
, enable virtualenv as:
cd env
source bin/activate
then install requirements as commented
Thanks, Fernando Mendez
Is there an answer or what? I am stuck on the same problem here
Same problem, after doing pip freeze
of my project and running pip -r install
huge number of packages cannot found, very akward(
помогите плз
Решил проблему? если да скажи как пожалуйста.
Hello guyz, git clone the code and the open it in any code editor of your choice. When you are done with that, create a virtualenv and activate it like so:
- virtualenv env -- "Activate using: cd env ---> source bin/activate"
OR
- virtualenv env --- "source env/bin/activate"
After you have successfully activated your virtual environment, cd into the source code were the "requirements.txt file is.
and then run command "pip install -r requirements.txt"
BAMMMM!!!!!!!!!!!!!!!!!!!!! That should work guyz...
Added -r , Still not working!!
try:
pip3 install -r requirements.txt
You have to pass the
-r
flag when installing fromrequirements.txt
file. Try running:pip install -r requirements.txt
even then im getting error like Could not find a version that satisfies the requirement distro-info===0.18ubuntu0.18.04.1 (from -r requirements.txt (line 22)) (from versions: 0.10) No matching distribution found for distro-info===0.18ubuntu0.18.04.1 (from -r requirements.txt (line 22)) after removing that in requirements.txt file and again show another error liike other particular thing version couldn't find......
I had the same issue and found this workaround: with your virtual environment running, pip install each line of requirements.txt manually.
For example if your requirements.txt file has the following lines: appdirs==1.4.4 asgiref==3.3.4 autopep8==1.5.7 (etc)
You'd run: pip install appdirs==1.4.4 pip install asgiref==3.3.4 pip install autopep8==1.5.7 (etc)
i have the same error. and the huge number of python libraries are not available
I didn't know exact thing
On Sun, 27 Feb 2022, 1:01 pm syed saad, @.***> wrote:
i have the same error. and the huge number of python libraries are not available [image: Screen Shot 2022-02-27 at 3 30 30 PM] https://user-images.githubusercontent.com/87109729/155872992-d2d1ac6a-f2e5-4228-9b08-41712a487aee.png
— Reply to this email directly, view it on GitHub https://github.com/fs0c131y/AadhaarSearchEngine/issues/7#issuecomment-1053297194, or unsubscribe https://github.com/notifications/unsubscribe-auth/AKC25CYRV345WZOFXTYDEY3U5HHNDANCNFSM4EXGPHPQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you commented.Message ID: @.***>
Hello sorry, I want to ask why my Jupyter notebook won't detect another module?
pip install requirements.txt command is not working, but pip freeze > requirements.txt is working
could not install requirement.txt in virtual env
deactivate your venv by writing in CMD : deactivate
Then Install venv in your directory : python -m venv < your env name > # like this python -m venv venv
Then go to your req.txt path and install it by the right code:
pip install -r req.txt or pip install -r requirements.txt
How to create a virtual env in termux ??
How to create a virtual env in termux ??
- Run python -m venv my_venv on your Termux terminal to create a virtual environment named my_venv.
- Run ls on your termux terminal and notice that a new folder has been created named my_venv — that folder will hold our environment packages i.e Django.
$ python -m venv my_venv
- Then Run source my_env/bin/activate to activate the virtual environment :
$ source my_env/bin/activate
ــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ
Source: https://medium.com/the-andela-way/create-the-simplest-django-and-react-server-on-your-phone-fd53ea30c5e8
Решил проблему? если да скажи как пожалуйста.
у меня такая проблема в стримлите