Umesh-01 / Python-Assistant

Python Assistant (PA) is a voice command based assistant service written in Python 3.9+. It can recognize human speech or voice, talk to user and execute basic commands.
MIT License
79 stars 53 forks source link

Added requirements.txt #31

Closed Akshata-Gunapache closed 2 years ago

Akshata-Gunapache commented 2 years ago

Added a requirements.txt file listing all the libraries, modules, and packages in itself that are used while developing the project.

Akshata-Gunapache commented 2 years ago

@Umesh-01 I have created a pull request on this issue. I request you to merge my PR.🙏

anandxkumar commented 2 years ago

@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.

anandxkumar commented 2 years ago

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.

Akshata-Gunapache commented 2 years ago

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?

anandxkumar commented 2 years ago

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

Akshata-Gunapache commented 2 years ago

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

Screenshot 2022-03-10 214309

It is still showing the same thing. Please help 🙏

anandxkumar commented 2 years ago

Ok do the following steps: 1) git checkout main 2) git checkout -b requirement2 3) git remote add upstream https://github.com/Umesh-01/Python-Assistant.git 4) git pull upstream main 5) Delete pycache folder if any. 6) Add the requirements.txt file 7) Commit and push, create a new PR and close the previous one.

Akshata-Gunapache commented 2 years ago

Screenshot 2022-03-13 211845 Again the same problem sir...

anandxkumar commented 2 years ago

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

anandxkumar commented 2 years ago

Any update @Akshata-Gunapache