While installing SubModLib from the official repository (), I am unable to complete the installation as directed by the readme. Both the alternatives (as mentioned below) do not work.
Alternative 1:
$ pip install -i / --extra-index-url / submodlib
Alternative 2:
$ git clone .git
$ cd submodlib
$ pip install .
Even after installing all the mentioned dependencies, I am unable to wheel the particular module. In fact, I also checked for a conda version of the installation, but it does not exist.
What to do now?
While installing SubModLib from the official repository (https://github/albertotamajo/submodlib/tree/master), I am unable to complete the installation as directed by the readme. Both the alternatives (as mentioned below) do not work.
Alternative 1:
$ pip install -i https://test.pypi./simple/ --extra-index-url https://pypi./simple/ submodlib
Alternative 2:
$ git clone https://github/decile-team/submodlib.git
$ cd submodlib
$ pip install .
Even after installing all the mentioned dependencies, I am unable to wheel the particular module. In fact, I also checked for a conda version of the installation, but it does not exist.
What to do now?
Share Improve this question asked Mar 6 at 2:02 SachinSachin 2834 silver badges20 bronze badges 1- 1 if you get error message then you should show it in question (not in comments) as text (not image) – furas Commented Mar 6 at 7:53
1 Answer
Reset to default 0After trying a lot of different tactics with the original module, I found this forked module (https://github/albertotamajo/submodlib/tree/master) that worked for me.
Use the following installation steps.
$ git clone https://github/decile-team/submodlib.git
$ cd submodlib
$ pip install .
It worked for me.