Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tiqi-js-tutorial
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Matt Grau
tiqi-js-tutorial
Commits
09d81e36
Commit
09d81e36
authored
3 years ago
by
Matt Grau
Browse files
Options
Downloads
Patches
Plain Diff
create python virtual environment
parents
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
README.md
+21
-0
21 additions, 0 deletions
README.md
with
23 additions
and
0 deletions
.gitignore
0 → 100644
+
2
−
0
View file @
09d81e36
# ignore any virtual environment
*venv
This diff is collapsed.
Click to expand it.
README.md
0 → 100644
+
21
−
0
View file @
09d81e36
# 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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment