Troubleshooting

Fix for ‘no keys found’ error

Screenshot 2025-01-30 at 1 55 10 PM

Check your local ssh agent has your ssh key by running:

ssh-add -L

If your key isn’t present, run the following on your local machine:

ssh-add

Fix for python not finding modules

deactivate
rm -rf myenv

Then follow the steps for creating virtual environment and reinstalling dependencies

Fix for missing distutils package

With the virtualenv activated run:

pip install --upgrade setuptools