forked from eliteservice1002/mlmodels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_install.sh
43 lines (13 loc) · 838 Bytes
/
run_install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#pip install numpy==1.18.2 pillow==6.2.1 && wget https://raw.githubusercontent.com/arita37/mlmodels/dev/requirements_fake.txt && pip install -r requirements_fake.txt && pip install https://github.com/arita37/mlmodels/archive/dev.zip
pip install numpy==1.18.2 pillow==6.2.1
wget https://raw.githubusercontent.com/arita37/mlmodels/dev/requirements.txt
pip install -r requirements.txt
rm requirements.txt ;
wget https://raw.githubusercontent.com/arita37/mlmodels/dev/requirements_fake.txt
pip install -r requirements_fake.txt
rm requirements_fake.txt ;
### Extra for Colab
pip install torchvision==0.4.0
mkdir z ; cd z && git clone https://github.com/arita37/mlmodels.git ;
pip uninstall mlmodels ; cd mlmodels && pip install -e . --no-deps --force ;
python -c "import mlmodels;"