Skip to content

Commit e487500

Browse files
author
dbickson
committed
cleaning installation instructions
1 parent 75686e6 commit e487500

File tree

1 file changed

+31
-8
lines changed

1 file changed

+31
-8
lines changed

INSTALL.md

Lines changed: 31 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,30 +17,50 @@ pip install --upgrade pip
1717

1818

1919
# Pip Package setup
20-
Download the FastDup latest wheel from the following shared folder: `s3://visualdb`
2120

22-
Latest version: 0.33
21+
## Using pypi
2322

24-
## For pip (python 3.8 or 3.7) install using
2523
```bash
26-
wget https://github.com/visualdatabase/fastdup/releases/download/v0.33/fastdup-0.33-cp37-cp37m-linux_x86_64.whl
27-
or
28-
wget https://github.com/visualdatabase/fastdup/releases/download/v0.33/fastdup-0.33-cp38-cp38-linux_x86_64.whl
24+
python3.8 -m pip install fastdup
25+
```
26+
27+
## Using stable release
2928

29+
- download the latest wheel for your system from our [release page](https://github.com/visualdatabase/fastdup/releases). Assuming the wheel file is found in your working folder, run:
30+
31+
```bash
3032
python3.8 -m pip install *.whl
3133
```
3234

33-
## For conda (python 3.7.11) install using
35+
# Conda setup (Python 3.7 only)
36+
## Using Anaconda channels:
37+
```bash
38+
conda install -y pandas tqdm opencv numpy
39+
conda install -c dbickson fastdup
40+
```
41+
42+
## Using stable release
43+
- download the latest bz2 for your system from our [release page](https://github.com/visualdatabase/fastdup/releases). Assuming the wheel file is found in your working folder, run:
3444
```bash
3545
conda install -y pandas tqdm opencv numpy
3646
conda install fastdup-<VERSION>-py37_0.tar.bz
3747
```
3848

49+
Note: don't forget to replace the <VERSION> with the latest version for example 0.45
50+
51+
52+
# Debian package install
53+
- download the latest deb for your system from our [release page](https://github.com/visualdatabase/fastdup/releases). Assuming the wheel file is found in your working folder, run:
54+
```bash
55+
sudo dpkg -i fastdup-<VERSION>-ubuntu-20.04.deb
56+
```
57+
Application name is fastdup.
3958

4059
# Currently supported software/hardware
4160

4261
Operating system
4362
- `Ubuntu 20.04 LTS`
63+
- `Ubuntu 18.04 LTS`
4464

4565
Software versions
4666
- `Python 3.8` (via pip) or `Python 3.7` (via pip or conda) or a `debian package` (Python is not required)
@@ -52,10 +72,13 @@ Hardware support
5272
# Common installation issues and their solution
5373

5474
ERROR: fastdup-0.39-cp38-cp38-manylinux_2_31_x86_64.whl is not a supported wheel on this platform.
55-
- Check that you are on ubuntu 20.04 (via the command `uname -a`).
75+
- Check that you are on ubuntu 20.04 or 18.04 (via the command `lsb_release -r`).
5676
- Check that you are using the right python version (python3.8 and not python).
5777
- Make sure pip is up to date using `python3.8 -m pip install -U pip`).
5878
- Make sure you install using `python3.8 -m pip install..` and not just `pip install...`.
79+
- If that does not work, please open an issue with the otuput of `python3.8 -m pip debug --verbose`
5980

6081
ERROR: libGL.so.1: cannot open shared object file: No such file or directory
6182
- Need to install depedency: `sudo apt -y nstall libgl1-mesa-glx`
83+
84+

0 commit comments

Comments
 (0)