Skip to content

Commit

Permalink
Add notes on conda activate
Browse files Browse the repository at this point in the history
Reinforce that Anaconda users should try to create venv with the canonical python method first.
  • Loading branch information
MrCordeiro committed Oct 12, 2022
1 parent cad5045 commit ae8bd80
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion assignments/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ This assignment uses life expectancy in Europe grouped by Country (or other, lik

1. Clone this repo.
2. Create a virtual environment with `python -m venv .venv`. If you are using conda, you can create a virtual environment with `conda create --name foundations`.
3. Activate the virtual environment with `source .venv/bin/activate` or `.venv\Scripts\activate` on Windows. Or, if you are on conda, activate the environment with `conda activate foundations`.
3. Activate the virtual environment with `source .venv/bin/activate` or `.venv\Scripts\activate` on Windows.
> **Note for Anaconda users**: Same as above, if you are having too many problems getting started, then feel free to activate the environment with `conda activate foundations` instead.
4. Install its dependencies on editable mode with `pip install -e .[dev]`. Install its dependencies on editable mode with `pip install -e '.[dev]'`.

## Using this project
Expand Down

0 comments on commit ae8bd80

Please sign in to comment.