Open sgibson91 opened 5 years ago
This will also need updating in the Getting Started section of the README
#egg
addition is neededThe lovely developers of this package probably haven't noticed this bug in the documentation before as you've probably all got local copies of the repo which contains a setup.py
file with the dependencies and builds the egg info. Without a local copy (that is to say, a git clone or fork), pip
doesn't know where to get this info from and so asks you to provide it in the command line.
(At least, I think this is what's going on. I might be wrong!)
Yes if I do the following, pip
doesn't complain:
git clone https://github.com/WhitakerLab/scona.git
cd scona
pip install git+https://github.com/WhitakerLab/scona.git
So I think it's important to clarify whether or not users need to clone the repo first.
This is great feedback @sgibson91, this stuff was all just thrown together by me.
You're welcome @Islast 🙂
Hey! 👋
Just leaving a quick issue to say that I think the installation instructions in the development guide could have a line to say clone/fork the repo first. As it reads right now, it sounds like the
pip
command is the only thing a user needs to install scona.Thanks!
Update 1
Users diving straight into the
pip
command may see this error message:Perhaps the command needs to be?:
Update 2
Confirmed!
pip
command should be as described above in Update 1 ☝️Package installs without cloning/forking 🎉