File size: 459 Bytes
a16576a
 
 
 
 
 
 
 
 
 
 
 
 
06fb3df
 
 
a16576a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
echo "Creating virtual environment..."
python3 -m venv tf_test_env

echo "Activating virtual environment..."
source tf_test_env/bin/activate

echo "Upgrading pip..."
python -m pip install --upgrade pip

echo "Installing requirements..."
pip install -r requirements.txt

echo "Upgrading TensorFlow and Keras..."
pip install --upgrade tensorflow keras

echo "Setup complete! To activate the environment, run:"
echo "source tf_test_env/bin/activate"