You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
472 B
11 lines
472 B
|
2 years ago
|
@echo off
|
||
|
|
:: Installing Microsoft Visual C++ Runtime - all versions 1.0.1 if it's not already installed
|
||
|
|
choco install vcredist-all
|
||
|
|
:: Installing CUDA if it's not already installed
|
||
|
|
choco install cuda
|
||
|
|
:: Installing Python if it's not already installed
|
||
|
|
choco install python -y
|
||
|
|
:: Assuming successful installation, we ensure pip is upgraded
|
||
|
|
python -m ensurepip --upgrade
|
||
|
|
:: Use pip to install the packages listed in 'requirements.txt'
|
||
|
|
pip install -r requirements.txt
|