File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,8 @@ mvn package
5858```
5959## Using with virtual environment
6060Create virtual environment, and install wheel package
61+
62+ ### Linux & MacOS
6163```
6264python -m venv venv
6365source venv/bin/activate
@@ -68,6 +70,21 @@ Install rtde package
6870pip install target/rtde-<version>-release.zip
6971```
7072
73+ ### Windows PowerShell
74+ If Python3 is not installed, then just run python3 from powershell. Microsoft store will launch the installation.
75+
76+ Permission to run scripts in console is needed to activate virtual envrionment.
77+ ```
78+ set-executionpolicy -Scope CurrentUser -ExecutionPolicy Unrestricted
79+ python -m venv venv
80+ venv/Scripts/Activate.ps1
81+ pip install wheel
82+ ```
83+ Install rtde package
84+ ```
85+ pip install target/rtde-<version>-release.zip
86+ ```
87+
7188# Contributor guidelines
7289Code is formatted with [ black] ( https://github.com/psf/black ) .
7390Run code formatter before submitting pull request.
You can’t perform that action at this time.
0 commit comments