-
-
Notifications
You must be signed in to change notification settings - Fork 111
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
Showing
1 changed file
with
5 additions
and
4 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 |
---|---|---|
|
@@ -40,17 +40,18 @@ I recommend you using a virtual environment for development. | |
|
||
```zsh | ||
# Clone the repository | ||
[email protected]:yourUserName/swarmlib.git | ||
git clone [email protected]:yourUserName/swarmlib.git | ||
cd swarmlib | ||
|
||
# Create virtual environment | ||
python3 -m venv swarmlib/.venv | ||
source swarmlib/.venv/bin/activate | ||
python3 -m venv .venv | ||
source .venv/bin/activate | ||
|
||
# Install dependencies | ||
make install | ||
|
||
# Open the project with VS Code | ||
code swarmlib | ||
code . | ||
``` | ||
|
||
When you open the project the first time with VS Code the editor will ask you to install all recommended workspace extensions. | ||
|