googlefonts / shaperglot

Test font files for language support
Apache License 2.0
29 stars 4 forks source link

Installing Shaperglot #4

Closed NeilSureshPatel closed 1 year ago

NeilSureshPatel commented 1 year ago

I know the overview says "Development has barely started, so don't try using this yet." but tried to install Shaperglot anyway :) Got the following error.

`ERROR: Could not find a version that satisfies the requirement shaperglot (from versions: none)'

'ERROR: No matching distribution found for shaperglot`

We just kicked off the African language support work with Google, so I am curious if there is a dev version I could start working with.

Thanks.

kontur commented 1 year ago

Shaperglot is not on pip as of yet, it seems. With latest pip versions you should be able to use:

pip install git+ssh://git@github.com/simoncozens/shaperglot.git
NeilSureshPatel commented 1 year ago

Thanks. I gave it a try and it looks like I need some kind of access rights to the repo. I am getting the following error when running the install command above.

Warning: Permanently added the ECDSA host key for IP address '140.82.112.4' to the list of known hosts.
  git@github.com: Permission denied (publickey).
  fatal: Could not read from remote repository.

  Please make sure you have the correct access rights
  and the repository exists.
  error: subprocess-exited-with-error
simoncozens commented 1 year ago

Use this instead: pip install git+https://github.com/simoncozens/shaperglot.git

NeilSureshPatel commented 1 year ago

Perfect! Thanks that did the trick.