bdzyubak / torch-control

A top-level repo for evaluating natively available models
MIT License
2 stars 0 forks source link

Shared dependencies installed to conda base #9

Closed bdzyubak closed 6 months ago

bdzyubak commented 6 months ago

Should instead be installed to each target environment. The issue is that the following command is not working correctly, at least on Windows: conda run -n [env_name] pip install [dependency]

bdzyubak commented 6 months ago

Patched installer. pip must be installed in conda environment for conda run -n to work correctly. Otherwise, the system pip is used and packages install to the system.

Added ability to install whatever is possible with conda to hard link and conserve space. Made pip inside environment install method into a fallback.

Added transformers (Generative NLP AI), seaborn and a few more shared dependencies.