Skip to content

Commit

Permalink
update of README
Browse files Browse the repository at this point in the history
  • Loading branch information
Georg Schramm committed Mar 8, 2021
1 parent 5ceef5d commit ee770ab
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,31 +25,42 @@ The installation consists of three steps:
Download and install Miniconda from <https://docs.conda.io/en/latest/miniconda.html>.

Please use the ***Python 3.x*** installer and confirm that the installer
should run ```conda init``` at the end of the installtion process.
should run
```
conda init
```
at the end of the installtion process.

To test your miniconda installtion, open a new terminal and execute

```conda list```
```
conda list
```

which should list the installed basic python packages.

### Creation of the virtual conda environment

To create a virtual conda python=3.8 environment execute

```conda create -n pynemaiqpet python=3.8 ipython ```
```
conda create -n pynemaiqpet python=3.8 ipython
```

To test the installation of the virual environment, execute
```conda activate pynemaiqpet```
```
conda activate pynemaiqpet
```

### Installation of the pynemaiqpet package

Activate the virual conda environment
```conda activate pynemaiqpet```
```
conda activate pynemaiqpet
```

To install the pynemaiqpet package from pypi run:
```pip install pynemaiqpet```

```
pip install pynemaiqpet
```
which will install the pynemaiqpet package inside the virtual
conda environment.

Expand Down

0 comments on commit ee770ab

Please sign in to comment.