enzynet
enzynet copied to clipboard
Need for too many manual operations in order to install the package
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:
- Navigate to a folder of interest
cd path/to/where/the/package/can/be/installed/
- Manually clone the repository
git clone https://github.com/shervinea/enzynet.git
- Install dependencies
pip3 install -r requirements.txt
- And then install the package itself
pip3 install .
Desired behavior. Install the package with just:
pip3 install enzynet