Skip to content
Snippets Groups Projects
Commit 09d81e36 authored by Matt Grau's avatar Matt Grau
Browse files

create python virtual environment

parents
No related branches found
No related tags found
No related merge requests found
# ignore any virtual environment
*venv
# README
# First create a python virtual environment
```bash
python3 -m venv demo_venv
```
Activate the python environment
```bash
source demo_venv/bin/activate
```
Verify that you are in the virtual environment
```bash
which pip
$ ~/tiqi-js-tutorial/demo_venv/bin/pip
which python
$ ~/tiqi-js-tutorial/demo_venv/bin/python
```
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment