Skip to content

Commit c009d50

Browse files
committed
Remove Conda and use Python native venv
1 parent 899eace commit c009d50

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Please see the full details over the test suite implementation on the [unittest-
109109
This demo project requires the following dependencies.
110110

111111
1. RDP Access credentials.
112-
2. Python [Anaconda](https://www.anaconda.com/distribution/) or [MiniConda](https://docs.conda.io/en/latest/miniconda.html) distribution/package manager.
112+
2. [Python](https://www.python.org/) 3.10 and above
113113
3. [Docker Desktop/Engine](https://docs.docker.com/get-docker/) application for running the test suite with Docker.
114114
5. Internet connection.
115115

@@ -123,13 +123,13 @@ The first step is to unzip or download the example project folder into a directo
123123
### <a id="python_example_run"></a>Run example test suite in a console
124124

125125
1. Open Anaconda Prompt and go to the project's folder.
126-
2. Run the following command in the Anaconda Prompt application to create a Conda environment named *http_unittest* for the project.
126+
2. Run the following command in the Command Prompt application to create a Python Virtual environment named *http_unittest* for the project.
127127
```
128-
(base) $>conda create --name http_unittest python=3.9
128+
$>python -m venv http_unittest
129129
```
130-
3. Once the environment is created, activate a Conda *http_unittest* environment with this command in Anaconda Prompt.
130+
3. Once the environment is created, activate a virtual environment *http_unittest* environment with this command .
131131
```
132-
(base) $>conda activate http_unittest
132+
$>http_unittest\Script\activate
133133
```
134134
4. Run the following command to the dependencies in the *http_unittest* environment
135135
```

0 commit comments

Comments
 (0)