Skip to content

Commit

Permalink
Fix typo and add venv to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
mbonanom committed Jan 22, 2024
1 parent 9d628c8 commit e895b37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
**/__pycache__/*
*.pyc
pyenv/*
**/*.png
**/.DS_Store
**/*.parquet
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@

A standard venv with Python3.11 can be created on lxplus
via `python3.11 -m venv <name_of_venv>` and all necessary
dependencies installed via `pip install .` as follows`:
dependencies installed via `pip install .` as follows:

```bash
python3.11 -m venv <name_of_venv>
python3.11 -m venv pyenv
source <name_of_venv>/bin/activate
pip install .
```
Expand Down

0 comments on commit e895b37

Please sign in to comment.