Skip to content

Commit 94bbcfd

Browse files
committed
Update install instructions: tables via pip (remove separate conda installation instruction)
1 parent 320d45a commit 94bbcfd

3 files changed

Lines changed: 2 additions & 15 deletions

File tree

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,7 @@ Or as an example for GPU support (please check pytorch docs to get the perfect v
7272
```bash
7373
conda install pytorch cudatoolkit=11.3 -c pytorch
7474
```
75-
- [2] Then, [install `pytables`](https://www.pytables.org/usersguide/installation.html):
76-
```bash
77-
conda install -c conda-forge pytables==3.8.0
78-
```
79-
- [3] Finally, install `DeepLabCut` (with all functions + the GUI):
75+
- [2] Then, install `DeepLabCut` (with all functions + the GUI):
8076

8177
```bash
8278
pip install --pre "deeplabcut[gui]"

docs/beginner-guides/beginners-guide.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,7 @@ pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
5050

5151
**(2) Install DeepLabCut**
5252

53-
Alright! Next, we will install `Tables` (also called pytables), which is a package to read the HDF5 files that make up the backbone of data management in DeepLabCut, then we will install all the `deeplabcut` source code 🔥. Please decide which version you want (stable or alpha), then type:
54-
55-
```
56-
conda install -c conda-forge pytables==3.8.0
57-
```
53+
Alright! Next, we will install all the `deeplabcut` source code 🔥. Please decide which version you want (stable or alpha), then type:
5854

5955
- **Alpha release:**
6056
```

docs/installation.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ need your GPU drivers installed.
1919
```bash
2020
conda create -n DEEPLABCUT python=3.12
2121
conda activate DEEPLABCUT
22-
conda install -c conda-forge pytables==3.8.0
2322
2423
# install PyTorch with your desired CUDA version (or for CPU only) - check [their
2524
](https://pytorch.org/get-started/locally/) website:
@@ -37,10 +36,6 @@ pip install --pre deeplabcut[gui]
3736
python -c "import torch; print(torch.cuda.is_available())"
3837
```
3938

40-
- Why do we install [pytables](https://www.pytables.org/usersguide/installation.html) with
41-
`conda` and not `pip`? Because it requires some libraries that not all users will have
42-
installed, and conda will ensure that they are installed as well.
43-
4439
- If you're familiar with the command line and want TensorFlow support, look [below](
4540
deeplabcut-with-tf-install) for a fresh installation that has worked for us (on Linux)
4641
and makes it possible to use the GPU with both PyTorch and TensorFlow.

0 commit comments

Comments
 (0)