zealberth/lssvr

No pip install

grudloff opened this issue ยท 9 comments

Hey, it seems the project isn't available through pip install!

Oh, i'm sorry, I will fix this. Thanks!

Thanks!

Thanks! Is there any easy way to bypass the python^3.8 requirement to install on google colab that currently has python 3.7.10?

Hi, @grudloff !

Try this into your colab notebook:

image

[I think that is better I change the minimum requirements for this package... hehehe]

Relaxing the constraint from pip cli seems impossible. So it looks like git clone is the only option, though I came to a solution that maintains the same syntax for importing.

!git clone https://github.com/zealberth/lssvr
!mv lssvr/lssvr lssvr_temp 
!rm lssvr -r 
!mv lssvr_temp lssvr

But changing the minimum requirements may be better ๐Ÿ˜ฌ

Nice :)

Found an even better solution.

!pip install git+https://github.com/zealberth/lssvr.git

This has the added advantage of installing the last version!

@zealberth maybe it is a good idea to add

Found an even better solution.

!pip install git+https://github.com/zealberth/lssvr.git

This has the added advantage of installing the last version!

@zealberth maybe it is a good idea to add this option to the readme to install the latest version?