-
Notifications
You must be signed in to change notification settings - Fork 51
Added requirements.txt #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@Umesh-01 I have created a pull request on this issue. I request you to merge my PR.🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank You🙏
requirements.txt
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't exist as it points to your local folder, and would cause issues on other systems, replace it with PyAudio and its version and check whether it's installing on your system in a different environment using pip install -r requirements.txt.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have tried to make the desired changes . Could you please review it now?
@Akshata-Gunapache delete the __pycache__ folder in your local system. Also, follow the Readme.MD to pull the latest repo and fix the merge conflict by overwriting your code over the conflicted part, would be good practice for you.
Don't add the virtualenv folder, it is not required. Also pull the latest main branch of umesh-01/Python-Assistant into your repo and delete the pycache folders again as .gitignore file isn't present in your local system which will push the pyc cache files in to ur repo.
I have made the changes but when I try to push it to my branch , it is showing as permission denied . What do I do now? Could you please help?
If you are sure that you have fixed the issue (Deleting the pycache and virtualenv folder) then use the --force tag i.e.
git push origin requirement -f
If you are sure that you have fixed the issue (Deleting the pycache and virtualenv folder) then use the
--forcetag i.e.git push origin requirement -f
It is still showing the same thing. Please help 🙏
Ok do the following steps:
git checkout maingit checkout -b requirement2git remote add upstream https://github.com/Umesh-01/Python-Assistant.gitgit pull upstream main- Delete pycache folder if any.
- Add the requirements.txt file
- Commit and push, create a new PR and close the previous one.
Screenshot 2022年03月13日 211845
Again the same problem sir...
The error is occuring because you to pushing the code directly to the Umesh-01 repo and not your fork.
Use the following code to update your origin repo link:
git remote set-url origin https://github.com/Akshata-Gunapache/Python-Assistant.git
and try again pushing git push origin requirement2, then create a new pull request
Any update @Akshata-Gunapache
Added a requirements.txt file listing all the libraries, modules, and packages in itself that are used while developing the project.