Skip to content
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

Does not exist? #6

Open
nhussain-tbox opened this issue Sep 13, 2018 · 1 comment
Open

Does not exist? #6

nhussain-tbox opened this issue Sep 13, 2018 · 1 comment

Comments

@nhussain-tbox
Copy link

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?

@stevesmit
Copy link

stevesmit commented Feb 13, 2019

@nhussain-tbox I got the same error. This is what I did to get it installed.

  1. First you need to clone the repo locally
  2. 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
  1. 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".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants