Add Windows Commands to TD Guide #189

Merged
Nick Alberelli merged 10 commits from TinyNick/blender-studio-pipeline:feature/add-windows-td-guide into main 2024-01-17 15:44:06 +01:00
3 changed files with 12 additions and 5 deletions
Showing only changes of commit 0e320db278 - Show all commits

View File

@ -173,7 +173,7 @@ export default defineConfig({
items: [ items: [
{text: 'Project Tools Setup', link: '/td-guide/project-tools-setup'}, {text: 'Project Tools Setup', link: '/td-guide/project-tools-setup'},
{text: 'SVN Setup', link: '/td-guide/svn-setup'}, {text: 'SVN Setup', link: '/td-guide/svn-setup'},
{text: 'Python Install', link: '/td-guide/python'} {text: 'Python Setup', link: '/td-guide/python'}
] ]
}, },
{ {

View File

@ -9,7 +9,7 @@ The terminal commands on this page are designed to be run on a linux/mac systems
In this guide, you will learn how to setup the Blender Studio Pipeline, the backbone of [Blender Open Movies](https://studio.blender.org/films/). This workflow relies on Blender, some Blender Add-Ons, and additional services like [Kitsu](https://www.cg-wire.com/kitsu) and [Flamenco](https://flamenco.blender.org/). Wether you are an individual with a single computer or a studio with a full network of workstations, this guide offers a straightforward approach to set up the pipeline, complete with easy-to-follow examples. In this guide, you will learn how to setup the Blender Studio Pipeline, the backbone of [Blender Open Movies](https://studio.blender.org/films/). This workflow relies on Blender, some Blender Add-Ons, and additional services like [Kitsu](https://www.cg-wire.com/kitsu) and [Flamenco](https://flamenco.blender.org/). Wether you are an individual with a single computer or a studio with a full network of workstations, this guide offers a straightforward approach to set up the pipeline, complete with easy-to-follow examples.
::: info Python Requirement ::: info Python Requirement
Running these scripts requires python 3.11+, please ensure [python is installed](/td-guide/python.md) on your system before running blender with the below instructions Running these scripts requires python 3.11+, please ensure [python & it's dependencies are installed](/td-guide/python.md) on your system before running blender with the below instructions
::: :::
## Creating Root Folder ## Creating Root Folder

View File

@ -1,5 +1,5 @@
# Python Install # Python Setup
## Install Python
The Blender Studio Pipeline requires `Python 3.11` or greater to be installed on your system. The Blender Studio Pipeline requires `Python 3.11` or greater to be installed on your system.
## Windows & Mac ## Windows & Mac
@ -27,3 +27,10 @@ packman -S python
``` ```
After installation, open a command prompt/terminal window, enter `python --version`, if installation was successful the python version you installed should be printed in your command prompt/terminal window. After installation, open a command prompt/terminal window, enter `python --version`, if installation was successful the python version you installed should be printed in your command prompt/terminal window.
## Install Dependencies
The Blender Studio Pipeline depends on scripts that require packages from the PIP package manager. The following is a guide to installing the required packages, on your system's python. To avoid module clutter consider setting up a virtual environment see the [official Python Documentation](https://docs.python.org/3/library/venv.html) for details.
1. Ensure PIP is installed `python -m ensurepip --upgrade`
2. Install required 'requests' package `python -m pip install requests`