Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consistent venv names README.md #228

Open
wants to merge 1 commit into
base: student
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ After setting up the anaconda:
navigate to the folder where the repository resides

install anaconda (see instruction)
conda create --name lxmls_new
conda activate lxmls_new
conda create --name lxmls_venv
conda activate lxmls_venv
conda install pip
pip install --editable .

If you prefer `pip` to Anaconda you can install the toolkit in a way that does
not interfere with your existing installation. For this you can use a virtual
environment as follows

virtualenv venv
source venv/bin/activate (on Windows: .\venv\Scripts\activate)
virtualenv lxmls_venv
source lxmls_venv/bin/activate (on Windows: .\lxmls_venv\Scripts\activate)
pip install pip setuptools --upgrade
pip install --editable .

Expand Down