Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielKotik committed Aug 15, 2021
1 parent e31bf65 commit 6aacf94
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,19 @@ Originally, these files have been used in studying optical beam shifts providing
We highly recommend to install the parallel version of PyMeep via Conda:

```shell
$ conda create -n pmp -c conda-forge pymeep=*=mpi_mpich_*
# create conda virtual environment "pmp"
$ conda create -n pmp -c conda-forge pymeep=*=mpi_mpich_* scipy

# next command is optional, but recommended to enforce environment isolation (no local
# user site packages in conda environment that may shadow conda installed dependencies)
$ conda env config vars set PYTHONNOUSERSITE=True -n pmp

# activate environment
$ conda activate pmp

# install optbeam package inside environment (-e flag is optional; it makes an
# editable install for developers)
$ python -m pip install [-e] .
```

For detailed installation instructions, see the [Meep documentation](https://meep.readthedocs.io/en/latest/Installation/#conda-packages).
Expand Down

0 comments on commit 6aacf94

Please sign in to comment.