-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated example developer installation to use 3.11
- Loading branch information
1 parent
2877d9b
commit abce875
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ Community contributions are welcomed! 🎊 | |
|
||
Using `conda` this looks like: | ||
```bash | ||
conda create -n wecopttool python=3.10 | ||
conda create -n wecopttool python=3.11 | ||
conda activate wecopttool | ||
conda install -c conda-forge capytaine wavespectra | ||
git clone [email protected]:<YOUR_USER_NAME>/WecOptTool.git | ||
|
@@ -22,7 +22,7 @@ And using `pip`: | |
```bash | ||
git clone [email protected]:<YOUR_USER_NAME>/WecOptTool.git | ||
cd WecOptTool | ||
python3.10 -m venv .venv | ||
python3.11 -m venv .venv | ||
. .venv/bin/activate | ||
pip install -e .[dev] | ||
``` | ||
|