Skip to content

Commit

Permalink
docs update
Browse files Browse the repository at this point in the history
  • Loading branch information
neylsoncrepalde committed Nov 12, 2020
1 parent b5378f1 commit fa8daee
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,11 @@ This is also our way of reinforcing our position that women should be taking mor

### Dependencies

- Anaconda or Miniconda Python (>= 3.6)
- conda (>= 4.8)
- Python (>= 3.6)
- **docker**

Hermione depends on conda to build and manage virtual conda environments. If you don't have it installed, please visit
<a href="https://www.anaconda.com/products/individual" target="_blank">Anaconda website</a> or
<a href="https://docs.conda.io/en/latest/miniconda.html" target="_blank">Miniconda website</a>.

Hermione does not depend on conda to build and manage virtual environments anymore. It uses `venv` instead.


### Install

Expand All @@ -68,9 +65,18 @@ hermione new project_hermione
Do you want to start with an implemented example (recommended) [y/n]? [y]:
```

3. Hermione already creates a conda virtual environment for the project. Activate it
3. Hermione already creates a virtual environment for the project. For Windows users, activate it with

```cmd
<project_name>_env\Scripts\activate
```

For linux and MacOS users, do

```bash
source <project_name>_env/bin/activate
```

![](https://cdn-images-1.medium.com/max/800/1*38yp-E_AUxM7lIw9PCo0rw.png)

4. After activating, you should install some libraries. There are a few suggestions in “requirements.txt” file:

Expand Down

0 comments on commit fa8daee

Please sign in to comment.