We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ece6728 commit 85a47b6Copy full SHA for 85a47b6
demo.py
@@ -6,6 +6,9 @@
6
'''
7
import os
8
import sys
9
+if (sys.version_info < (3, 0)):
10
+ raise Exception("Please follow the installation instruction on 'https://github.com/chrischoy/3D-R2N2'")
11
+
12
import shutil
13
import numpy as np
14
from subprocess import call
main.py
@@ -1,4 +1,8 @@
1
#!/usr/bin/env python
2
+import sys
3
4
5
import argparse
import pprint
0 commit comments