File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ description = "Efficient LLM inference on Slurm clusters using vLLM."
55readme = " README.md"
66authors = [{name = " Marshall Wang" , email = " marshall.wang@vectorinstitute.ai" }]
77license = " MIT"
8- requires-python = " >=3.10,<4.0 "
8+ requires-python = " >=3.10"
99dependencies = [
1010 " requests>=2.31.0" ,
1111 " click>=8.1.0" ,
Original file line number Diff line number Diff line change 1- #! / bin/bash
1+ #! bin/bash
22
33# Load python module if you are on Vector cluster and install poetry
44module load python/3.10.12
5- pip3 install poetry
5+ pip install poetry
66
77# Optional: it's recommended to change the cache directory to somewhere in the scratch space to avoid
88# running out of space in your home directory, below is an example for the Vector cluster
@@ -13,14 +13,11 @@ export POETRY_CACHE_DIR=/scratch/ssd004/scratch/$(whoami)/poetry_cache
1313# poetry config cache-dir
1414echo " Cache directory set to: $( poetry config cache-dir) "
1515
16- echo " 📜 Telling Poetry to use Python 3.10..."
17- poetry env use python3.10
18-
1916# Install dependencies via poetry
2017poetry install
2118
2219# Activate the virtual environment
23- # poetry shell
20+ poetry shell
2421
2522# Deactivate the virtual environment
2623# deactivate
You can’t perform that action at this time.
0 commit comments