deps(conda): use transformers environment with autogptq (#1555)

This commit is contained in:
Ettore Di Giacinto
2024-01-06 15:30:53 +01:00
committed by GitHub
parent 949da7792d
commit 62a02cd1fe
4 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,4 @@
.PHONY: autogptq
autogptq:
@echo "Creating virtual environment..."
@conda env create --name autogptq --file autogptq.yml
@echo "Virtual environment created."
$(MAKE) -C ../common-env/transformers

View File

@ -6,7 +6,7 @@
export PATH=$PATH:/opt/conda/bin
# Activate conda environment
source activate autogptq
source activate transformers
# get the directory where the bash script is located
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"