Spaces:
Running
Running
docs: Avoid duplicate venv creation
Browse files
README.md
CHANGED
@@ -90,14 +90,14 @@ In addition, the `RUN_IN_OFFLINE_MODE` environment variable needs to be set to `
|
|
90 |
|
91 |
```bash
|
92 |
# Environment initialization, especially on Debian
|
|
|
93 |
sudo apt install python-is-python3 -y
|
94 |
-
sudo apt install git
|
95 |
# Change the package name based on the Python version installed: python -V
|
96 |
sudo apt install python3.11-venv -y
|
97 |
-
python -m venv venv
|
98 |
|
99 |
# Install Git Large File Storage (LFS)
|
100 |
-
sudo apt install git-lfs
|
101 |
git lfs install
|
102 |
|
103 |
ollama list # View locally available LLMs
|
|
|
90 |
|
91 |
```bash
|
92 |
# Environment initialization, especially on Debian
|
93 |
+
sudo apt update -y
|
94 |
sudo apt install python-is-python3 -y
|
95 |
+
sudo apt install git -y
|
96 |
# Change the package name based on the Python version installed: python -V
|
97 |
sudo apt install python3.11-venv -y
|
|
|
98 |
|
99 |
# Install Git Large File Storage (LFS)
|
100 |
+
sudo apt install git-lfs -y
|
101 |
git lfs install
|
102 |
|
103 |
ollama list # View locally available LLMs
|