git clone https://github.com/Wadym/voiceConvergence.git
Switching remote URLs from HTTPS to SSH Open Terminal.
Change the current working directory to your local project.
List your existing remotes in order to get the name of the remote you want to change.
git remote -v
origin https://github.com/Wadym/voiceConvergence.git (fetch)
origin https://github.com/Wadym/voiceConvergence.git (push)
Change your remote's URL from HTTPS to SSH with the git remote set-url command.
git remote set-url origin [email protected]:�Wadym/voiceConvergence.git
git remote -v
origin [email protected]:�Wadym/voiceConvergence.git (fetch)
origin [email protected]:�Wadym/voiceConvergence.git (push)
If:
git push
[email protected]: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Then:
Start SSH agent in the background.
eval "$(ssh-agent -s)"
Agent pid 977
requirements.txt:
PyQt5>=5.15
matplotlib>=3.5
librosa>=0.10
parselmouth>=0.4
gTTS>=2.3
fastdtw>=0.3
sounddevice>=0.4
numpy>=1.24
scipy>=1.10
Install with:
pip install -r requirements.txt