File size: 532 Bytes
8cf99c7
 
 
 
 
 
 
 
 
 
 
c5bdd8b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
title: AI InstagramPhotos
emoji: 🔥
colorFrom: red
colorTo: purple
sdk: docker
pinned: false
license: mit
---

Check out the configuration reference at https://huggingface.co./docs/hub/spaces-config-reference


## Creating and starting a virtual environment for Python 3

Create a directory for a virtual environment:

```
/AI-InstagramPhotos$ python3 -m venv ./venv/
```

Activate it:
```
/AI-InstagramPhotos$ source ./venv/bin/activate
```
You should see the prompt have a prefix `(venv)`.

Deactivate it:
```
deactivate
```