You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- formatting was confusing the table of contents. This should look nice
now.
- Also add syntax highlighting for code examples
Co-authored-by: ssteinbach <[email protected]>
The CMAKE_INSTALL_PREFIX variable must be set to a path with no spaces in it, because CMake's default install location is in C:\Program Files, which won't work with OpenTimelineIO due to spaces in the path.
45
+
### Windows - in an "x64 Native Tools Command Prompt" for Visual Studio
The CMAKE_INSTALL_PREFIX variable must be set to a path with no spaces in it, because CMake's default install location is in C:\Program Files, which won't work with OpenTimelineIO due to spaces in the path.
56
55
57
-
+`python setup.py install`
56
+
## To build OTIO for Python development:
58
57
59
-
### Mac
58
+
### Linux
60
59
61
-
+`python setup.py install --user`
60
+
+ `python setup.py install`
62
61
63
-
The `--user` option is not necessary if the build is done within a virtualenv.
62
+
### Mac
64
63
65
-
### Windows - in an "x64 Native Tools Command Prompt" for Visual Studio
3. To build OTIO for both C++ and Python development:
72
+
## To build OTIO for both C++ and Python development:
72
73
73
-
The first time setup.py is run, cmake scripts will be created, and the headers and libraries will be installed where you specify. If the C++ or Python sources are subsequently modified, running this command again will build and update everything appropriately.
74
+
The first time setup.py is run, cmake scripts will be created, and the headers and libraries will be installed where you specify. If the C++ or Python sources are subsequently modified, running this command again will build and update everything appropriately.
0 commit comments