You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Invalid requirement: 'git+git@github.com:JuliusKunze/speechless.git'
It looks like a path. File 'git+git@github.com:JuliusKunze/speechless.git' does not exist.
Did you remove your github from the system. If so, is there another way to install this?
The text was updated successfully, but these errors were encountered:
@nhussain-tbox I got the same error. This is what I did to get it installed.
First you need to clone the repo locally
Edit the setup.py file in the cloned repo. You'll wanna remove the top two import lines and replace them with this
from setuptools import setup
try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
Point a terminal with administrator privileges (if in windows) to the cloned repo's folder, activate the virtual environment you want to use (if at all) and run python setup.py install. if using linux I'd assume sudo before the command would do the trick..?
That should install speechless.
What I mean by terminal with administrator privileges is open the start menu, search cmd and then right click on the Command Prompt and "Run as Administrator".
Hello. I recently tried installing your file via the pip3 instructions on your github.
pip3 install git+git@github.com:JuliusKunze/speechless.git
Unfortunately, I seem to be getting this error:
Invalid requirement: 'git+git@github.com:JuliusKunze/speechless.git'
It looks like a path. File 'git+git@github.com:JuliusKunze/speechless.git' does not exist.
Did you remove your github from the system. If so, is there another way to install this?
The text was updated successfully, but these errors were encountered: