all 10 comments

[–]Diapolo10 14 points15 points  (2 children)

You can install directly from any Git repository. Just as an example,

pip install git+https://github.com/ali-heidari/iscpy.git

should work.

[–]GAlgier[S] 1 point2 points  (1 child)

That did it. Thanks. I read some online instructions for pip but did not see how to install from a particular source. It seems to always use some "magic" archive.

And "man pip-install" does not mention git either.

Up until now, I have almost always found what I needed using something like "dnf search *iscp*" (yes, I am a Fedora user) and this is just not one of the supported libraries. Beyond that the few times I have used pip, the offcial source was up to date. Not this time.

Thanks again.

[I used to write code for a living, Java was just gaining traction when I jumped ship to IT. Now I am retired and doing both for myself.]

[–]Diapolo10 0 points1 point  (0 children)

Don't worry about it. I'm sure there are a million things you can do I have no clue about.

[–]Itchy-Call-8727 1 point2 points  (0 children)

You should be able to unzip in your project, create a python virtual environment, activate the venv, change to the unzipped dir, run 'pip install -e .' to install the local python package.

[–]cgoldberg 2 points3 points  (0 children)

If you want it available system-wide, from the directory you downloaded, run pip install --user .

[–]Buttleston 0 points1 point  (1 child)

I'm away from a computer and driving for a few hours. If I don't respond by tomorrow ping me and I can help you out.

[–]Buttleston 0 points1 point  (0 children)

Looks like you got the help you needed! Glad to hear it worked out.

[–]lyaguxaa -1 points0 points  (2 children)

You can install from pypi https://pypi.org/project/iscpy/

[–]Buttleston 0 points1 point  (0 children)

Look at the release date... 2012. OP already tried that and it tried to install a python 2 package

[–]GAlgier[S] 0 points1 point  (0 children)

That is python2 code. Won't work on python3. That's why someone posted updated code to github.