-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1c6036
commit bb65b7c
Showing
1 changed file
with
7 additions
and
3 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 |
---|---|---|
|
@@ -72,13 +72,17 @@ To access and visualize the data: | |
|
||
## ⬇️ Installation | ||
|
||
### Intsalling DifFlexMM only | ||
|
||
Assuming you have access to the repo and ssh keys are set up in your GitHub account, you can install the package with | ||
|
||
```bash | ||
pip install git+ssh://[email protected]/bertoldi-collab/DifFlexMM.git | ||
``` | ||
|
||
or you can clone the repository, `cd` into the `DifFlexMM` folder, and install with | ||
### Installing DifFlexMM with examples of solved design problems | ||
|
||
Clone the repository, `cd` into the `DifFlexMM` folder, and install with | ||
|
||
```bash | ||
pip install -e . | ||
|
@@ -93,8 +97,8 @@ The dependency management of the project is done via [poetry](https://python-poe | |
|
||
To get started: | ||
|
||
- Install [poetry](https://python-poetry.org/docs/) | ||
- Clone the repo | ||
- Install [poetry](https://python-poetry.org/docs/). | ||
- Clone the repository. | ||
- `cd` into the root directory and run `poetry install`. This will create the poetry environment with all the necessary dependencies. | ||
- If you are using vscode, search for `venv path` in the settings and paste `~/.cache/pypoetry/virtualenvs` in the `venv path` field. Then select the poetry enviroment as python enviroment for the project. | ||
|
||
|