|
5 | 5 | ::::::{tab-set}
|
6 | 6 | :::::{tab-item} Linux
|
7 | 7 |
|
8 |
| -Nerfstudio requires `python >= 3.8`. We recommend using conda to manage dependencies. Make sure to install [Conda](https://docs.conda.io/en/latest/miniconda.html) before proceeding. |
| 8 | +Nerfstudio requires `python >= 3.9`. We recommend using conda to manage dependencies. Make sure to install [Conda](https://docs.conda.io/en/latest/miniconda.html) before proceeding. |
9 | 9 |
|
10 | 10 | :::::
|
11 | 11 | :::::{tab-item} Windows
|
12 | 12 |
|
13 | 13 | :::{admonition} Note
|
14 | 14 | :class: info
|
15 |
| -Nerfstudio on Windows is less tested and more fragile, due to way more moving parts outside of Nerfstudio's control. |
16 |
| -The instructions also tend to break over time as updates to different Windows packages happen. |
17 |
| -Installing Nerfstudio on Linux instead is recommended if you have the option. |
| 15 | +Nerfstudio on Windows is less tested and more fragile, due to way more moving parts outside of Nerfstudio's control. |
| 16 | +The instructions also tend to break over time as updates to different Windows packages happen. |
| 17 | +Installing Nerfstudio on Linux instead is recommended if you have the option. |
18 | 18 | Alternatively, installing Nerfstudio under WSL2 (temporary unofficial guide [here](https://gist.github.com/SharkWipf/0a3fc1be3ea88b0c9640db6ce15b44b9), not guaranteed to work) is also an option, but this comes with its own set of caveats.
|
19 | 19 | :::
|
20 | 20 |
|
@@ -51,15 +51,15 @@ For example:
|
51 | 51 | When updating, or if you close your terminal before you finish the installation and run your first `splatfacto`, you have to re-do this environment activation step.
|
52 | 52 | :::
|
53 | 53 |
|
54 |
| -Nerfstudio requires `python >= 3.8`. We recommend using conda to manage dependencies. Make sure to install [Conda](https://docs.conda.io/en/latest/miniconda.html) before proceeding. |
| 54 | +Nerfstudio requires `python >= 3.9`. We recommend using conda to manage dependencies. Make sure to install [Conda](https://docs.conda.io/en/latest/miniconda.html) before proceeding. |
55 | 55 |
|
56 | 56 | :::::
|
57 | 57 | ::::::
|
58 | 58 |
|
59 | 59 | ## Create environment
|
60 | 60 |
|
61 | 61 | ```bash
|
62 |
| -conda create --name nerfstudio -y python=3.8 |
| 62 | +conda create --name nerfstudio -y python=3.10 |
63 | 63 | conda activate nerfstudio
|
64 | 64 | python -m pip install --upgrade pip
|
65 | 65 |
|
@@ -184,15 +184,15 @@ TLDR for linux:
|
184 | 184 | curl -fsSL https://pixi.sh/install.sh | bash
|
185 | 185 | ```
|
186 | 186 |
|
187 |
| -### Install Pixi Environmnent |
| 187 | +### Install Pixi Environmnent |
188 | 188 | After Pixi is installed, you can run
|
189 | 189 | ```bash
|
190 | 190 | git clone https://github.com/nerfstudio-project/nerfstudio.git
|
191 | 191 | cd nerfstudio
|
192 | 192 | pixi run post-install
|
193 | 193 | pixi shell
|
194 | 194 | ```
|
195 |
| -This will fetch the latest Nerfstudio code, install all enviroment dependencies including colmap, tinycudann and hloc, and then activate the pixi environment (similar to conda). |
| 195 | +This will fetch the latest Nerfstudio code, install all enviroment dependencies including colmap, tinycudann and hloc, and then activate the pixi environment (similar to conda). |
196 | 196 | From now on, each time you want to run Nerfstudio in a new shell, you have to navigate to the nerfstudio folder and run `pixi shell` again.
|
197 | 197 |
|
198 | 198 | You could also run
|
@@ -435,6 +435,6 @@ export PATH=$PATH:$CUDA_HOME/bin
|
435 | 435 |
|
436 | 436 | **Other errors**
|
437 | 437 |
|
438 |
| -(Windows) A lot of errors on Windows can be caused by not having the Visual Studio environment loaded. |
439 |
| -If you run into errors you can't figure out, please try re-activating the Visual Studio environment (as outlined at the top of the Windows instructions on this page) and try again. |
| 438 | +(Windows) A lot of errors on Windows can be caused by not having the Visual Studio environment loaded. |
| 439 | +If you run into errors you can't figure out, please try re-activating the Visual Studio environment (as outlined at the top of the Windows instructions on this page) and try again. |
440 | 440 | This activation only lasts within your current terminal session and does not extend to other terminals, but this should only be needed on first run and on updates.
|
0 commit comments