Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create windows_11_trainer_install.md #149

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions docs/windows_11_trainer_install.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

# Installing the RootPainter trainer (server) on windows 11.

1. Open powershell as administrator
2. Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
3. Invoke-WebRequest -UseBasicParsing -Uri "https://raw.githubusercontent.com/pyenv-win/pyenv-win/master/pyenv-win/install-pyenv-win.ps1" -OutFile "./install-pyenv-win.ps1"; &"./install-pyenv-win.ps1"
4. Close and reopen powershell as administrator.
5. pyenv install 3.10.11
6. pyenv global 3.10.11
7. pyenv version
8. python -c "import sys; print(sys.executable)"
9. cd Desktop
10. pip install torch==1.13.1+cu117 torchvision==0.14.1+cu117 --index-url https://download.pytorch.org/whl/cu117
11. pip install root-painter-trainer
12. start-trainer
13. You will be prompted to input the RootPainter Sync directory. You can just type root_painter_sync and press enter.
14. The trainer should now be running and it should tell you your batch size (should be above 0) and if the GPU is available or not (It should say True).
Loading