orhir commited on
Commit
cea7a7e
1 Parent(s): e3ff5a8

Upload setup.py

Browse files
Files changed (1) hide show
  1. setup.py +4 -3
setup.py CHANGED
@@ -2,9 +2,10 @@ import os
2
  import subprocess
3
  import time
4
  from setuptools import find_packages, setup
5
- import mim
6
- mim.install('mmcv-full==1.6.2')
7
- mim.install('mmpose==0.29.0')
 
8
 
9
  def readme():
10
  with open('README.md', encoding='utf-8') as f:
 
2
  import subprocess
3
  import time
4
  from setuptools import find_packages, setup
5
+ os.system('python -m mim install mmengine')
6
+ os.system('python -m mim install "mmcv-full==1.6.2"')
7
+ os.system('python -m mim install "mmpose==0.29.0"')
8
+
9
 
10
  def readme():
11
  with open('README.md', encoding='utf-8') as f: