Updated installation instructions for all skills to always use uv pip install

This commit is contained in:
Timothy Kassis
2025-11-16 15:34:52 -08:00
parent d94f21c51f
commit 2fc3e6a88e
82 changed files with 179 additions and 290 deletions

View File

@@ -23,14 +23,10 @@ This skill should be used when working with:
## Installation
```bash
# Recommended: Using conda/mamba
mamba install -c conda-forge molfeat
# Alternative: Using pip
pip install molfeat
uv pip install molfeat
# With all optional dependencies
pip install "molfeat[all]"
uv pip install "molfeat[all]"
```
**Optional dependencies for specific featurizers:**
@@ -489,8 +485,8 @@ Process in chunks or use streaming approaches for datasets > 100K molecules.
### Pretrained Model Dependencies
Some models require additional packages. Install specific extras:
```bash
pip install "molfeat[transformer]" # For ChemBERTa/ChemGPT
pip install "molfeat[dgl]" # For GIN models
uv pip install "molfeat[transformer]" # For ChemBERTa/ChemGPT
uv pip install "molfeat[dgl]" # For GIN models
```
### Reproducibility