PyInstallAssistant is a command-line tool designed to simplify the installation process of Python projects. It automatically parses the README.md file of a project and executes the necessary installation commands using ai.
conda env create -f environment.yml
Install a project in the current directory:
```bash
pyinstall
```
- Finds the Project Root: Locates the root directory of the project based on the provided path or the current working directory.
- Locates the README: Searches for a README.md file within the project root.
- Parses the README: Extracts relevant installation commands from the README.md file.
- Executes Commands: Runs the extracted commands, guiding the user through the installation process.
This project is licensed under the MIT License - see the LICENSE file for details.