enzynet icon indicating copy to clipboard operation
enzynet copied to clipboard

Need for too many manual operations in order to install the package

Open shervinea opened this issue 4 years ago • 0 comments

Context. With package repos such as PyPI, package installation can be done with a single command.

Setup. Suppose a user wants to install EnzyNet.

Current behavior. The user currently needs to perform 4 steps:

  1. Navigate to a folder of interest
cd path/to/where/the/package/can/be/installed/
  1. Manually clone the repository
git clone https://github.com/shervinea/enzynet.git
  1. Install dependencies
pip3 install -r requirements.txt
  1. And then install the package itself
pip3 install .

Desired behavior. Install the package with just:

pip3 install enzynet

shervinea avatar Sep 10 '21 04:09 shervinea