Skip to content
Snippets Groups Projects
Commit 475a9158 authored by Timothee Besset's avatar Timothee Besset
Browse files

Merge branch 'fixReadme' into 'main'

Fix some instructions and clarify others in README.md.

See merge request !1
parents c6573341 732237dd
No related branches found
No related tags found
1 merge request!1Fix some instructions and clarify others in README.md.
...@@ -11,7 +11,8 @@ Install misc utilities: ...@@ -11,7 +11,8 @@ Install misc utilities:
Install Python 3.10: Install Python 3.10:
- `choco install python --version 3.10.3` # These options install into c:\Python310 for all users
- `choco install python --version 3.10.3 --params "'/qn /norestart ALLUSERS=1 TARGETDIR=c:\Python310'"`
Python will install to C:\Python30. Restart the shell to pickup it up. Python will install to C:\Python30. Restart the shell to pickup it up.
...@@ -35,7 +36,9 @@ Install cygwin with needed packages: ...@@ -35,7 +36,9 @@ Install cygwin with needed packages:
Next, prepare a python virtualenv with all the necessary dependencies. This step can be repeated in fresh clones of the repositories. Next, prepare a python virtualenv with all the necessary dependencies. This step can be repeated in fresh clones of the repositories.
- setup: `python -m venv C:\steamos-devkit` From your checkout of steamos-devkit:
- setup: `python -m venv .`
- activate: `.\Scripts\Activate.ps1` - activate: `.\Scripts\Activate.ps1`
If you get an `UnauthorizedAccess` error due to [execution policies](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_execution_policies), run the following command first: `Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process` If you get an `UnauthorizedAccess` error due to [execution policies](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_execution_policies), run the following command first: `Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment