Add Windows Commands to TD Guide #189
@ -173,7 +173,7 @@ export default defineConfig({
|
||||
items: [
|
||||
{text: 'Project Tools Setup', link: '/td-guide/project-tools-setup'},
|
||||
{text: 'SVN Setup', link: '/td-guide/svn-setup'},
|
||||
{text: 'Python Install', link: '/td-guide/python'}
|
||||
{text: 'Python Setup', link: '/td-guide/python'}
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -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.
|
||||
|
||||
::: 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
|
||||
|
@ -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.
|
||||
|
||||
## 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.
|
||||
|
||||
## 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`
|
Loading…
Reference in New Issue
Block a user